返回列表 發帖

繼承 (一)

所謂繼承(Inheritance)是一種類別之間的關係,可以利用現有類別衍生出新的類別,新的類別可以與現有類別分享共同的屬性、方法與資料結構等,在物件導向程式設計中利用繼承,可以達到程式碼重複使用的優點。

繼承功能可以在建立新類別時,修改、添加或繼承現有類別的定義。建立一種類別後,如果須要再建立許多大同小異的類別,就可以利用繼承特性,分別繼承這個現有的類別,並且將差異部分加以修改或添加。

被繼承的類別稱為父類別或基礎類別(Base Class),而經由繼承產生的類別,則稱為子類別或衍生類別(Derived Class),子類別不僅可以繼承父類別的特性(屬性與方法),也可以修改或添加特性。

C++支援多重繼承(一個類別擁有多個父類別),但Java不直接支援多重繼承,類似的機制則必須透過介面來完成。

歸納上述,關於繼承的四大特性如下:

1.子類別可以繼承父類別的特性。
2.子類別可以添加新的特性。
3.子類別可以修改並重新定義自父類別繼承下來的特性。
4.子類別繼承父類別時,不需要複製父類別的程式碼,造成程式碼重複。




  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.             d2.showProfile();
  8.             c1.showProfile();
  9.         }

  10. }

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

  29. class Dog extends Animal
  30. {
  31.         Dog(String n, int a, double w)
  32.         {
  33.                 super(n,a,w);
  34.         }
  35. }

  36. class Cat extends Animal
  37. {
  38.         Cat(String n, int a, double w)
  39.         {
  40.                 super(n,a,w);
  41.         }
  42. }
複製代碼

  1. public class JPD01 {
  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.                 d2.showProfile();
  8.                 c1.showProfile();
  9.         }
  10. }
  11. public class Animal {
  12.         String name;
  13.         int age;
  14.         double w;
  15.        
  16.         Animal(String n, int a, double w)
  17.         {
  18.                 name=n;
  19.                 age=a;
  20.                 this.w=w;
  21.         }
  22.         void showProfile()
  23.         {
  24.                 System.out.printf("%s今年%d歲,體重%.2f公斤%n", name, age, w);
  25.         }
  26. }
  27. class  Dog extends Animal {
  28.         Dog(String n, int a, double w){
  29.                 super(n, a, w);
  30.         }
  31. }
  32. class  Cat extends Animal {
  33.         Cat(String n, int a, double w){
  34.                 super(n, a, w);
  35.         }
  36. }
複製代碼

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.             d2.showProfile();
  8.             c1.showProfile();
  9.         }

  10. }

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

  29. class Dog extends Animal
  30. {
  31.         Dog(String n, int a, double w)
  32.         {
  33.                 super(n,a,w);
  34.         }
  35. }

  36. class Cat extends Animal
  37. {
  38.         Cat(String n, int a, double w)
  39.         {
  40.                 super(n,a,w);
  41.         }
  42. }
複製代碼

TOP

  1. public class Ch1 {

  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.             d2.showProfile();
  8.             c1.showProfile();
  9.         }

  10. }

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

  29. class dog extends Animal
  30. {
  31.         dog(String n, int a, double w)
  32.         {
  33.                 super(n,a,w);
  34.         }
  35. }

  36. class cat extends Animal
  37. {
  38.         cat(String n, int a, double w)
  39.         {
  40.                 super(n,a,w);
  41.         }
  42. }
複製代碼

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.             d2.showProfile();
  8.             c1.showProfile();
  9.         }

  10. }

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

  29. class Dog extends Animal
  30. {
  31.         Dog(String n, int a, double w)
  32.         {
  33.                 super(n,a,w);
  34.         }
  35. }

  36. class Cat extends Animal
  37. {
  38.         Cat(String n, int a, double w)
  39.         {
  40.                 super(n,a,w);
  41.         }
  42. }
複製代碼

TOP

  1. public class Ch56 {

  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.             d2.showProfile();
  8.             c1.showProfile();
  9.         }

  10. }

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

  29. class Dog extends Animal
  30. {
  31.         Dog(String n, int a, double w)
  32.         {
  33.                 super(n,a,w);
  34.         }
  35. }

  36. class Cat extends Animal
  37. {
  38.         Cat(String n, int a, double w)
  39.         {
  40.                 super(n,a,w);
  41.         }
  42. }
複製代碼
李宇澤Oscar

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.                 d2.showProfile();
  8.                 c1.showProfile();
  9.         }

  10. }
  11. class Animal{
  12.         String name;
  13.         int age;
  14.         double w;

  15.         Animal(String n, int a, double w){
  16.                 name=n;
  17.                 age=a;
  18.                 this.w=w;
  19.         }
  20.         void showProfile()
  21.         {
  22.                 System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
  23.         }
  24. }
  25. class Dog extends Animal{
  26.         Dog(String n, int a, double w){
  27.                 super(n,a,w);
  28.         }
  29. }
  30. class Cat extends Animal{
  31.         Cat(String n, int a, double w) {
  32.                 super(n, a, w);
  33.         }
  34. }
複製代碼

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.             d2.showProfile();
  8.             c1.showProfile();
  9.         }

  10. }

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

  29. class Dog extends Animal
  30. {
  31.         Dog(String n, int a, double w)
  32.         {
  33.                 super(n,a,w);
  34.         }
  35. }

  36. class Cat extends Animal
  37. {
  38.         Cat(String n, int a, double w)
  39.         {
  40.                 super(n,a,w);
  41.         }
  42. }
複製代碼

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.         d2.showProfile();
  8.         c1.showProfile();
  9.         }

  10. }
  11. class Animal
  12. {
  13.     String name;
  14.     int age;
  15.     double weight;
  16.     Animal(String n,int a, double w)
  17.     {
  18.             name=n;
  19.             age=a;
  20.             weight=w;
  21.     }
  22.     void showProfile()
  23.     {
  24.             System.out.printf("%s今年%d歲,體重%.2f公斤%n",name,age,weight);
  25.     }
  26. }
  27. class Dog extends Animal
  28. {
  29.     Dog(String n,int a,double w)
  30.     {
  31.             super(n,a,w);
  32.     }
  33. }
  34. class Cat extends Animal
  35. {
  36.     Cat(String n,int a,double w)
  37.     {
  38.             super(n,a,w);
  39.     }
  40. }
複製代碼

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.             d2.showProfile();
  8.             c1.showProfile();
  9.         }

  10. }

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

  29. class Dog extends Animal
  30. {
  31.         Dog(String n, int a, double w)
  32.         {
  33.                 super(n,a,w);
  34.         }
  35. }

  36. class Cat extends Animal
  37. {
  38.         Cat(String n, int a, double w)
  39.         {
  40.                 super(n,a,w);
  41.         }
  42. }
複製代碼

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.show();
  7.                 d2.show();
  8.                 c1.show();
  9.         }

  10. }
  11. class Animal {
  12.         String name;
  13.     int age;
  14.     double we;
  15.     Animal(String n,int a,double w){
  16.             name=n;
  17.             age=a;
  18.             we=w;
  19.     }
  20.     void show()
  21.     {
  22.             System.out.println(name+"今年"+age+"歲,體重"+we+"公斤");
  23.     }
  24. }
  25. class Dog extends Animal{
  26.         Dog(String n, int a, double w) {
  27.                 super(n, a, w);
  28.         }
  29.        
  30. }
  31. class Cat extends Animal {
  32.         Cat(String n, int a, double w) {
  33.                 super(n, a, w);
  34.         }

  35. }
複製代碼
hahahahahahahaha

TOP

  1. public class Ch02 {

  2.         public static void main(String[] args) {
  3.                 Dog d1=new Dog(2,20,"球球");
  4.                 Dog d2=new Dog(1,30,"憨憨");
  5.                 Cat c1=new Cat(3,20,"啾啾");
  6.                 d1.show();
  7.                 d2.show();
  8.                 c1.show();
  9.         }
  10. }
  11. class Animal
  12. {
  13.         int age;
  14.         int wi;
  15.         String name;
  16.         Animal(int a, int w, String n)
  17.         {
  18.                 age=a;
  19.                 wi=w;
  20.                 name=n;
  21.         }
  22.         void show()
  23.         {
  24.                 System.out.println(name+"今年"+age+"歲,體重"+wi+"公斤.");
  25.         }
  26. }
  27. class Dog extends Animal
  28. {
  29.         Dog(int a,int w,String n)
  30.         {
  31.                 super(a,w,n);
  32.         }
  33. }
  34. class Cat extends Animal
  35. {
  36.         Cat(int a,int w,String n)
  37.         {
  38.                 super(a,w,n);
  39.         }
  40. }
複製代碼

TOP

返回列表