返回列表 發帖

繼承 (二)

本帖最後由 tonyh 於 2019-9-2 18:31 編輯



試在子類別中添加新的方法成員.
  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.         public static void main(String[] args) {
  3.                 Dog d1=new Dog("旺旺",8,45);
  4.                 Dog d2=new Dog("球球",9,40);
  5.                 Cat c1=new Cat("咪咪",2,10);
  6.                 d1.viewProfile();
  7.                 d2.viewProfile();
  8.                 c1.viewProfile();
  9.                 d1.viewProfile();
  10.         d1.makeSound(2);
  11.         d2.viewProfile();
  12.         d2.makeSound(3);
  13.         c1.viewProfile();
  14.         c1.makeSound(5);
  15.         }

  16. }

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

  30. class Dog extends Animal{
  31.         Dog(String n,int a, int w){
  32.                 super(n,a,w);
  33.         }
  34.         void makeSound(int x){
  35.                 for(int i=0; i<x; i++){
  36.                         System.out.print("汪~");
  37.                 }
  38.                 System.out.println("");
  39.         }
  40. }
  41. class Cat extends Animal{
  42.         Cat(String n,int a, int w){
  43.                 super(n,a,w);
  44.         }
  45.         void makeSound(int x){
  46.                 for(int i=0; i<x; i++){
  47.                         System.out.print("喵~");
  48.                 }
  49.                 System.out.println("");
  50.         }
  51. }
複製代碼
ABCDEFGHIJKLMNOPQRSTUVWXYZ

TOP

  1. public class Ch69 {
  2.         public static void main(String[] args) {
  3.                 Dog dd=new Dog("阿肥",1,1.28);
  4.                 Dog db=new Dog("皮球",2,1.35);
  5.                 Cat cc=new Cat("骷髏",3,0.95);
  6.                 dd.show();
  7.                 dd.sounds(2);
  8.                 db.show();
  9.                 db.sounds(3);
  10.                 cc.show();
  11.                 cc.sounds(5);
  12.         }
  13. }
  14. class Animal{
  15.         String name;
  16.         int age;
  17.         double weight;
  18.         Animal(String n,int a,double w){
  19.                 name=n;
  20.                 age=a;
  21.                 weight=w;
  22.         }
  23.     void show(){
  24.             System.out.println(name+"今年"+age+"歲,體重"+weight+"公斤.");
  25.     }       
  26. }
  27. class Dog extends Animal{
  28.         Dog(String n,int a,double w){
  29.                 super(n,a,w);
  30.         }
  31.         void sounds(int n){
  32.                 for(int i=1;i<=n;i++)
  33.                         System.out.print("汪~");
  34.                 System.out.println();
  35.         }
  36. }
  37. class Cat extends Animal{
  38.         Cat(String n,int a,double w){
  39.                 super(n,a,w);
  40.         }
  41.         void sounds(int n){
  42.                 for(int i=1;i<=n;i++)
  43.                         System.out.print("喵~");
  44.                 System.out.println();
  45.         }
複製代碼

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 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.        
  21.         Animal(String n, int a, double w)
  22.         {
  23.                 name=n;
  24.                 age=a;
  25.                 weight=w;
  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.                 {
  42.                         System.out.println("汪~");
  43.                 }
  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.                         System.out.println();
  58.                 }
  59.         }
  60. }
複製代碼

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. }
複製代碼
EEEEEEEEEEEEELLLLLLLLLLLLLIIIIIIIIIIIII

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

返回列表