返回列表 發帖

繼承 (三)



練習在子類別中添加新的特性,並在子類別中覆寫(override)自父類別繼承下來的方法。
  1. public class Ch70 {

  2.         public static void main(String[] args) {
  3.                 Dog d1=new Dog("憨憨",2,1.28,"棕色");
  4.                 Dog d2=new Dog("球球",1,1.35,"白色");
  5.                 Cat c1=new Cat("咪咪",3,0.95);
  6.                
  7.                 d1.showProfile();
  8.                 d1.makeSound(2);
  9.                 d2.showProfile();
  10.                 d2.makeSound(3);       
  11.                 c1.showProfile();
  12.                 c1.makeSound(5);
  13.         }
  14. }

  15. class Animal
  16. {
  17.         String name;
  18.         int age;
  19.         double weight;
  20.        
  21.         Animal(String n,int a,double w)
  22.         {
  23.                 name=n;
  24.                 age=a;
  25.                 weight=w;
  26.         }
  27.        
  28.         void showProfile()
  29.         {
  30.                 System.out.println(name+"今年"+age+"歲,體重"+weight+"公斤.");
  31.         }

  32. }

  33. class Dog extends Animal
  34. {
  35.         String color;
  36.         Dog(String n,int a,double w,String c)
  37.         {
  38.                 super(n,a,w);
  39.                 color=c;
  40.         }
  41.        
  42.         void makeSound(int x)
  43.         {
  44.                 for(int i=1; i<=x; i++)
  45.                     System.out.print("汪~");
  46.                 System.out.println();
  47.         }
  48.        
  49.         void showProfile()
  50.         {
  51.                 System.out.println(name+"今年"+age+"歲,體重"+weight+"公斤,毛色為"+color+".");
  52.         }
  53. }

  54. class Cat extends Animal
  55. {
  56.         Cat(String n,int a,double w)
  57.         {
  58.                 super(n,a,w);
  59.         }
  60.        
  61.         void makeSound(int x)
  62.         {
  63.                 for(int i=1; i<=x; i++)
  64.                     System.out.print("喵~");
  65.                 System.out.println();
  66.         }
  67. }
複製代碼

  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.                 Dog d1= new Dog("憨憨", 2, 1.28, "棕色");
  4.                 Dog d2= new Dog("球球", 1, 1.35, "白色");
  5.                 Cat c1= new Cat("咪咪",3,0.95);
  6.                 d1.showprofile();
  7.                 d1.makesound(2);
  8.                 d2.showprofile();
  9.                 d2.makesound(3);
  10.                 c1.showprofile();
  11.                 c1.makesound(5);
  12.         }

  13. }
  14. class Animal{
  15.         String name;
  16.         int age;
  17.         Double weight;
  18.        
  19.         Animal(String n, int a, Double w){
  20.                 name=n;
  21.                 age=a;
  22.                 weight=w;
  23.         }
  24.        
  25.         void showprofile(){
  26.                 System.out.println(name+"今年"+age+"歲,體重"+weight+"公斤.");
  27.         }
  28. }

  29. class Dog extends Animal {
  30.         String color;
  31.         Dog(String n, int a, Double w,String c){
  32.                 super(n,a,w);
  33.                 color=c;
  34.         }
  35.         void showprofile(){
  36.                 System.out.println(name+"今年"+age+"歲,體重"+weight+"公斤,毛色為"+color+",");
  37.         }
  38.         void makesound(int q){
  39.                 for (int i = 0; i < q; i++) {
  40.                         System.out.print("汪~");
  41.                 }
  42.                 System.out.println();
  43.         }
  44. }
  45. class Cat extends Animal{
  46.         Cat(String n, int a, Double w){
  47.                 super(n, a, w);
  48.         }
  49.         void makesound(int q){
  50.                 for (int i = 0; i < q; i++) {
  51.                         System.out.print("喵~");
  52.                 }
  53.                 System.out.println();
  54.         }
  55. }
複製代碼

TOP

返回列表