返回列表 發帖

繼承 (二)



試在子類別中添加新的方法成員.
  1. public class Ch69 {

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

  32. class Dog extends Animal
  33. {
  34.         Dog(String n, int a, double w)
  35.         {
  36.                 super(n,a,w);
  37.         }
  38.         void makeSound(int x)
  39.         {
  40.                 for(int i=1; i<=x; i++)
  41.                         System.out.print("汪~");
  42.                 System.out.println();
  43.         }
  44. }

  45. class Cat extends Animal
  46. {
  47.         Cat(String n, int a, double w)
  48.         {
  49.                 super(n,a,w);
  50.         }
  51.         void makeSound(int x)
  52.         {
  53.                 for(int i=1; i<=x; i++)
  54.                         System.out.print("喵~");
  55.                 System.out.println();
  56.         }
  57. }
複製代碼

  1. public class Ch68
  2. {
  3.         public static void main(String[] args)
  4.         {
  5.                 Dog d1 = new Dog("憨憨",2,1.28);
  6.                 Dog d2 = new Dog("球球",1,1.35);
  7.         Cat c1= new Cat("咪咪",3,0.95);
  8.         d1.showProfile();
  9.         d1.makeSound(2);
  10.         d2.showProfile();
  11.         d2.makeSound(3);
  12.         c1.showProfile();
  13.         c1.makeSound(5);
  14.         }
  15. }
  16. class Animal
  17. {
  18.     String name;
  19.     int age;
  20.     double w;
  21.         Animal(String n,int a,double w)
  22.     {
  23.             name = n;
  24.             age = a;
  25.             this.w = w;
  26.     }
  27.         void showProfile()
  28.         {
  29.                 System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
  30.         }
  31. }
  32. class Dog extends Animal
  33. {
  34.     Dog(String n,int a,double w)
  35.     {
  36.             super(n,a,w);
  37.     }
  38.     void makeSound(int x)
  39.     {
  40.             for(int i=1;i<=x;i++)
  41.             {
  42.                     System.out.print("汪~");
  43.             }
  44.             System.out.println();
  45.     }
  46. }
  47. class Cat extends Animal
  48. {
  49.     Cat(String n,int a,double w)
  50.     {
  51.             super(n,a,w);
  52.     }
  53.     void makeSound(int x)
  54.     {
  55.             for(int i=1;i<=x;i++)
  56.             {
  57.                     System.out.print("喵~");
  58.             }
  59.             System.out.println();
  60.     }
  61. }
複製代碼

TOP

  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. {
  16.         String name;
  17.         int age;
  18.         double w;
  19.         Animal(String n,int a,double w)
  20.         {
  21.                 name=n;
  22.                 age=a;
  23.                 this.w=w;
  24.         }
  25.         void showProfile()
  26.         {
  27.                 System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
  28.         }
  29. }
  30. class Dog extends Animal
  31. {
  32.         Dog(String n,int a,double w)
  33.         {
  34.                 super(n,a,w);
  35.         }
  36.         void makeSound(int x)
  37.         {
  38.                 for(int i=1;i<=x;i++)
  39.                     System.out.print("汪~");
  40.                 System.out.println();
  41.         }
  42. }
  43. class Cat extends Animal
  44. {
  45.         Cat(String n,int a,double w)
  46.         {
  47.                 super(n,a,w);
  48.         }
  49.         void makeSound(int x)
  50.         {
  51.                 for(int i=1;i<=x;i++)
  52.                     System.out.print("喵~");
  53.                 System.out.println();
  54.         }
  55. }
複製代碼
Allen

TOP

  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 w;
  18.         Animal(String n,int a,double w)
  19.         {
  20.                 name=n;
  21.                 age=a;
  22.                 this.w=w;
  23.         }
  24.         void showProfile(){
  25.                 System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
  26.         }
  27. }
  28. class Dog extends Animal{
  29.         Dog(String n,int a,double w)
  30.         {
  31.                 super(n,a,w);
  32.         }
  33.         void makeSound(int n)
  34.         {
  35.                 for(int i=1;i<=n;i++)
  36.                         System.out.print("汪~");
  37.                 System.out.println();
  38.         }
  39. }
  40. class Cat extends Animal{
  41.         Cat(String n,int a,double w)
  42.         {
  43.                 super(n,a,w);
  44.         }
  45.         void makeSound(int n)
  46.         {
  47.                 for(int i=1;i<=n;i++)
  48.                         System.out.print("喵~");
  49.                 System.out.println();
  50.         }
  51. }
複製代碼

TOP

  1. public class Ch01 {
  2.         public static void main(String[] args)
  3.         {
  4.         Dog d1=new Dog("憨憨",2,1.28);
  5.         Dog d2=new Dog("球球",1,1.35);
  6.         Cat c1=new Cat("咪咪",3,0.95);
  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 w;
  20.         Animal(String n,int a,double w)
  21.         {
  22.                 name=n;
  23.                 age=a;
  24.                 this.w=w;
  25.         }
  26.         void showProfile()
  27.         {
  28.                 System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
  29.         }
  30. }
  31. class Dog extends Animal
  32. {
  33.         Dog(String n,int a,double w)
  34.         {
  35.                 super(n,a,w);
  36.         }
  37.         void makesound(int n)
  38.         {
  39.                 for(int i=1; i<=n; i++)
  40.                         System.out.print("汪~");
  41.                 System.out.println();
  42.         }
  43. }
  44. class Cat extends Animal
  45. {
  46.         Cat(String n,int a,double w)
  47.         {
  48.                 super(n,a,w);
  49.         }
  50.         void makesound(int n)
  51.         {
  52.                 for(int i=1; i<=n; i++)
  53.                         System.out.print("喵~");
  54.                 System.out.println();
  55.         }
  56. }
複製代碼
Ivy

TOP

  1. public class Ch69 {

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

  32. class Dog extends Animal
  33. {
  34.         Dog(String n, int a, double w)
  35.         {
  36.                 super(n,a,w);
  37.         }
  38.         void makesound(int x)
  39.         {
  40.                 for(int i=1; i<=x; i++)
  41.                         System.out.print("汪~");
  42.                        System.out.println();
  43.         }
  44. }

  45. class Cat extends Animal
  46. {
  47.         Cat(String n, int a, double w)
  48.         {
  49.                 super(n,a,w);
  50.         }
  51.         void makesound(int x)
  52.         {
  53.                 for(int i=1; i<=x; i++)
  54.                         System.out.print("喵~");
  55.                        System.out.println();
  56.         }
  57. }
複製代碼

TOP

  1. public class Ch68 {

  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 An{
  15.         String name;
  16.         int age;
  17.         double wei;
  18.         An(String n,int a,double w)
  19.         {
  20.                 name=n;
  21.                 age=a;
  22.                 wei=w;
  23.                               
  24.                               
  25.         }
  26.         void showProfile(){
  27.                 System.out.println(name+"今年"+age+"歲,體重"+wei+"公斤");
  28.         }
  29. }
  30. class Dog extends An{
  31.       
  32.         Dog(String n,int a,double w)
  33.         {
  34.                 super(n,a,w);
  35.         }
  36.         void makeSound(int x)
  37.         {
  38.                 for(int i=1;i<=x;i++)
  39.                         System.out.print("汪~");
  40.                 System.out.println();
  41.                
  42.         }
  43. }
  44. class Cat extends An{
  45.       
  46.         Cat(String n,int a,double w)
  47.         {
  48.                 super(n,a,w);
  49.         }
  50.         void makeSound(int x)
  51.         {
  52.                 for(int i=1;i<=x;i++)
  53.                         System.out.print("喵~");
  54.                 System.out.println();
  55.                
  56.         }
  57. }
複製代碼

TOP

  1. public class Ch69 {  //主類別

  2.         public static void main(String[] args) {  //主方法
  3.             Dog d1=new Dog("憨憨",2,1.28);  //創建Dog類別的新物件,取名為 d1
  4.             Dog d2=new Dog("球球",1,1.35);
  5.             Cat c1=new Cat("咪咪",3,0.95);
  6.             d1.showProfile();  //執行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{    //定義父類別Animal
  15.       
  16.         String name;   //定義Animal的屬性
  17.         int age;
  18.         double weight;
  19.       
  20.         Animal(String n, int a, double w)  //定義Animail的建構子,建構子名稱必須和類別名稱一樣,建構子規範了新物件應有的屬性,透過建構子,快速的把物件初始化。
  21.         {
  22.                 name=n;    //把建構子的參數n指派給此類別所產生的物件,作為它的屬性
  23.                 age=a;    //把建構子的參數a指派給此類別所產生的物件,作為它的屬性
  24.                 weight=w;  //把建構子的參數w指派給此類別所產生的物件,作為它的屬性
  25.         }
  26.       
  27.         void showProfile()  //定義Animal的方法
  28.         {
  29.                 System.out.println(name+"今年"+age+"歲,體重"+weight+"公斤.");
  30.         }      
  31. }

  32. class Dog extends Animal  //定義Dog子類別,它繼承自Animal父類別,所以它具有和Animail一樣的屬性和方法
  33. {
  34.         Dog(String n, int a, double w)   //定義Dog子類別的建構子(建構子不能繼承,所以必須重寫,但可調用父類別的建構子來使用)
  35.         {
  36.                 super(n,a,w);  
  37.         }
  38.         void makeSound(int x)//在Dog子類別中,新增方法
  39.         {
  40.                 for(int i=1; i<=x; i++)
  41.                         System.out.print("汪~");
  42.                 System.out.println();
  43.         }
  44. }

  45. class Cat extends Animal
  46. {
  47.         Cat(String n, int a, double w)
  48.         {
  49.                 super(n,a,w);
  50.         }
  51.         void makeSound(int x)//在Cat子類別中,新增方法
  52.         {
  53.                 for(int i=1; i<=x; i++)
  54.                         System.out.print("喵~");
  55.                 System.out.println();
  56.         }
  57. }
複製代碼
May

TOP

  1. public class Ch69 {
  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.         Animal(String n, int a, double w)
  21.         {
  22.                 name = n;
  23.                 age = a;
  24.                 weight = w;
  25.         }
  26.         void showProfile()
  27.         {
  28.                 System.out.println(name+"今年"+age+"歲,體重"+weight+"公斤.");
  29.         }
  30. }
  31. class Dog extends Animal
  32. {
  33.         Dog(String n, int a, double w)
  34.         {
  35.                 super(n,a,w);
  36.         }
  37.         void makeSound(int x)
  38.         {
  39.                 for(int i=1;i<=x;i++)
  40.                 {
  41.                         System.out.print("汪~");
  42.                 }
  43.                 System.out.println();
  44.         }
  45. }
  46. class Cat extends Animal
  47. {
  48.         Cat(String n, int a, double w)
  49.         {
  50.                 super(n,a,w);
  51.         }
  52.         void makeSound(int x)
  53.         {
  54.                 for(int i=1;i<=x;i++)
  55.                 {
  56.                         System.out.print("喵~");
  57.                 }
  58.                 System.out.println();
  59.         }
  60. }
複製代碼

TOP

返回列表