Java继承接口与抽象类的作用域问题

关于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!";
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值