public class Make {//主类
public static void main(String[] args) {
mouse m=new mouse(“白色”,500,18);
m.a.move();
}
}
class Animal {//父类
String color;
int height;public void move() {
System.out.println("在水里哗哗游");
}}
class mouse {//子类
Animal a = new Animal();//利用父类属性创建新对象作为子类的属性,子类就可以获得父类的属性以及方法((((这就是组合)))))
int highth;mouse(String color, int height, int highth) {//对获得的父类属性以及子类本身属性,用this调用方法mouse为mouse属性初始化。
this.highth = highth;
this.a.color = color;
this.a.height=height;
}}
/**
• 1.创建父类,给i与方法以及属性
• 2.建立子类,利用父类属性创建新对象作为子类的属性,子类就可以获得父类的属性以及方法((((这就是组合)))))
• 子类下(父类类名 f=new 父类类名())
• 3.对获得的父类属性以及子类本身属性,用this调用方法mouse为mouse属性初始化(this.a.成员变量)。
• 4在主类的main方法下,调用子类构造器给子类对象赋值。以及调用父类下的方法
*/