1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| public class Mother {
public String personality = "cheerful";
public double height = 160.5;
public boolean hasEarlobe = true;
public void eating(Foods food) {
System.out.println("母亲吃东西细嚼慢咽");
}
}
public class Child extends Mother{
public String personality = "introverted";
public boolean hasEarlobe = false;
public double height = 180.5; @Override public void eating(Foods food) { System.out.println("孩子吃东西狼吞虎咽"); } }
|
感觉比书上讲的一大堆狗屁废话简练多了。。(?