首页 > 其他 > 详细

接口与继承

时间:2019-05-16 00:01:19      阅读:143      评论:0      收藏:0      [点我收藏+]
interface student{
    public void study();
}

interface studentworker extends student{
    public void earn();
    
}
public class Goodstudent implements studentworker {
    String name;
    public Goodstudent(String name){
        this.name=name;
    }
    void job(){
        System.out.println(name+"是好男人!!!");
    }
    public static void main(String[] args) {
        Goodstudent a=new Goodstudent("刘煜炀");
        a.study();
        a.earn();
        a.job();
    }
    public void study() {
        System.out.println(name+"会学习!!");        
    }
    public void earn() {
        System.out.println(name+"会赚钱!!");    
        
    }

}

 

接口与继承

原文:https://www.cnblogs.com/LYY1084702511/p/10872614.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!