接口可以继承接口
public interface InterfaceSub extends InterfaceA, interfaceB { }
public interface InterfaceSub extends InterfaceA, interfaceB { }
2017-05-29
" The return type should be the same or a subtype of the return type declared in the original overridden method in the superclass."
2017-05-29
类是抽象的概念,是具有相同属性与方法的对象的集合
类包括属性和方法
Java程序以类class 为组织单元
定义类的步骤:
a 定以类名:public class 类名
b 定以类的属性:属性类型 属性名
c 定义类的方法:方法类型 方法名
类包括属性和方法
Java程序以类class 为组织单元
定义类的步骤:
a 定以类名:public class 类名
b 定以类的属性:属性类型 属性名
c 定义类的方法:方法类型 方法名
2017-05-29
静态内部类 :
静态成员 == 类成员 因此结论2
类成员是独立于实例的 , 随着类的加载而加载 , 因此结论3
类成员相互访问 , 无法访问可能并不存在的实例 , 因此结论1
静态成员 == 类成员 因此结论2
类成员是独立于实例的 , 随着类的加载而加载 , 因此结论3
类成员相互访问 , 无法访问可能并不存在的实例 , 因此结论1
2017-05-29