/** * Created by xabcd on 2019/2/16. */ public class java_outer { int score = 95; void inst() { clas...
java——在类外部引用内部类:外部类的对象实例化了另一个内部类的对象
/** * Created by xabcd on 2019/2/16. */ public class java_outer { int score = 95; void inst() { Inne...
Java——static用法:
用stitic可以声明属性或方法,用static也可以声明内部类,用static声明的内部类则变成了外部类,但是用static声明的内部类不能访问非static外部类属性: 范例:使用static内部...
java——无法使用内部类的属性
/** * Created by xabcd on 2019/2/16. */ public class java_outer { int score = 95; void inst() { Inne...
java_内部类的使用方法:
/** * Created by xabcd on 2019/2/16. */ public class java_outer { int score = 95; void inst() { Inne...
java——Object覆写toString
覆写前: /** * Created by xabcd on 2019/2/16. */ class total_print extends Object{ String name = "张三:" ;...
java——接口应用
/** * Created by xabcd on 2019/2/16. */ interface A { int i = 10; public void sayI(); } interface E ...
?java——无法从静态上下文中引用非静态变量
/** * Created by xabcd on 2019/2/16. */ public class total_jiekou { interface A { int i = 10; public...
java——接口的实现
/** * Created by xabcd on 2019/2/16. */ interface java_jiekou1 { String name = "张三"; int age = 25; S...
java——接口的属性和特性
接口( interface) 是 Java 所 提供 的 另一种 重要 技术, 它的 结构 和 抽象 类 非常 相似, 也 具有 数据 成员 与 抽象 方法, 但它 与 抽象 类 又有 以下 两点 不...