继承:可以基于已经存在的类构造一个新类。继承已经存在的类就可以复用这些类的方法和域。在此基础上,可以添加新的方法和域,从而扩充了类的功能。public class ExtendsStu {public static void main(St
继承:可以基于已经存在的类构造一个新类。继承已经存在的类就可以复用这些类的方法和域。在此基础上,可以添加新的方法和域,从而扩充了类的功能。
public class ExtendsStu {public static void main(String[] args) {Rose rose = new Rose();rose.type = "玫瑰";rose.sendPeople();//rose.smile = '香';Rose.colorFul = true;}}class Flower {public String type;String color;protected double size;static Boolean colorFul;private char smile;public Flower(){}public Flower(String type, String color, double size, Boolean colorFul, char smile) {//super();System.out.println("调用了父类有参构造器");this.type = type;this.color = color;this.size = size;this.colorFul = colorFul;this.smile = smile;}public void sendPeople(){System.out.println(type+"被送人了");}private void demo(){System.out.println("我是父类私有的方法");}}class Rose extends Flower{public void hello(){System.out.println("您好,我的气味");//this.demo();不能继承父类私有的方法}}
--结束END--
本文标题: java中继承测试代码分析
本文链接: https://lsjlt.com/news/220236.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0