欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java中继承测试代码分析

程序员文章站 2023-12-09 14:38:21
继承:可以基于已经存在的类构造一个新类。继承已经存在的类就可以复用这些类的方法和域。在此基础上,可以添加新的方法和域,从而扩充了类的功能。 public clas...

继承:可以基于已经存在的类构造一个新类。继承已经存在的类就可以复用这些类的方法和域。在此基础上,可以添加新的方法和域,从而扩充了类的功能。

public class extendsstu {
	/*动物类:动物都可以动
 * 1.dog 2.cat 
 * 在java中,子类可以继承父类的属性和功能;
 * 继承关系的指定: 子类 extends 父类
 * 不能被继承的资源:
 * 1.子类不能继承父类的构造方法,而且必须调用一个父类的构造器(因为生成子类对象的时候会初始化父类属性)
 * 2.私有的资源不能被继承
 * 特殊的资源:
 * 1.静态的资源是可以被继承的
 * 拓展:
 * protected修饰的资源可以在子类中被访问;(跨包继承的情况下,只能在子类内部访问)
 * 继承的注意点:
 * 1.java中的类的继承是单继承;一个父类可以有n个子类
 * 2.子类构造器必须调用父类构造器
 * 3.当子类有与父类同名的属性的时候,子类对象this访问的是自己的属性
 * 4.生成子类对象的时候会携带继承连上的所有资源;
 */
	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();不能继承父类私有的方法
	}
}

总结

以上就是本文关于java中继承测试代码分析的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!