🤖 AI文章摘要 qwen-turbo-latest
加载中...

类继承

java类只支持单继承, 不支持多继承, java类继承不分继承模式,

  /**
* 正常继承方式
*/
class myClass  extend  BaseClass implement Interface{ /*类定义*/ }
  

接口继承

  interface myInterface extend BaseInterface { /*接口定义*/ }