关于java 继承接口以及抽象类的作用域问题
当子类继承接口或者是抽象类的时候 ,对于子类属性 没有写public修饰符就不能够使用 原因在于 接口以及抽象类默认的修饰符都是 public ,在实现的时候不能够缩小范围 所以必须对其添加 public修饰符
public static void main(String[] args) {
Fruit a = new Apple();
System.out.println(a.get());
Apple[] AppleArray; //AppleArray 作为数组的声明 一旦 数组被创建 就指向 AppleArray
AppleArray = new Apple[5];
AppleArray[0] = new Apple();
Fruit b = new Kiwi();
System.out.println(a == b);//二者同时继承自一个类 但是 指向的子类不相同 所以 二者本身不相同
}
}
interface Fruit {
String get();
}
//每一个类都有一个 toString()方法
class Apple implements Fruit {
String s;
String get() {
return "got an apple!";
}
}
class Kiwi implements Fruit {
String s;
public String get() {
return "got an kiwi!";
}
}