返回列表 發帖

建構子 (二)

本帖最後由 tonyh 於 2015-1-24 17:04 編輯

定義帶不同參數數量的建構子
  1. public class ch58    //主類別
  2. {
  3.     public static void main(String args[])   //主方法
  4.     {
  5.          Car bus=new Car("公車",6,40);   //在Car類別下,生成一個名為bus的實體物件
  6.          //Car truck=new Car("卡車");
  7.          Car truck=new Car(8,3);
  8.          //Car truck=new Car();
  9.          truck.name="卡車";
  10.          Car taxi=new Car("計程車",4,5);
  11.          System.out.println(bus.name+"有"+bus.wheel+"個輪子,可載"+bus.carry+"人.");
  12.          System.out.println(truck.name+"有"+truck.wheel+"個輪子,可載"+truck.carry+"人.");
  13.          System.out.println(taxi.name+"有"+taxi.wheel+"個輪子,可載"+taxi.carry+"人.");
  14.     }
  15. }
  16. class Car    //定義Car類別
  17. {
  18.     String name;
  19.     int wheel;
  20.     int carry;
  21.     Car()    //定義不帶任何參數的建構子
  22.     {
  23.     }
  24.     Car(String name)  //定義只帶一個參數的建構子
  25.     {
  26.         this.name=name;
  27.     }
  28.     Car(int wheel, int carry)  //定義只帶二個參數的建構子
  29.     {
  30.         this.wheel=wheel;
  31.         this.carry=carry;
  32.     }
  33.     Car(String name, int wheel, int carry)    //定義帶三個參數的建構子
  34.     {
  35.         this.name=name;
  36.         this.wheel=wheel;
  37.         this.carry=carry;
  38.     }
  39. }
複製代碼

  1. public class ch57
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         Car bus=new Car("公車",6,40);
  6.         Car truck=new Car(8,3);
  7.         truck.name="卡車";
  8.         Car taxi=new Car("計程車",4,5);
  9.         System.out.println(bus.name+"有"+bus.wheel+"個輪子,可載"+bus.carry+"人.");
  10.         System.out.println(truck.name+"有"+truck.wheel+"個輪子,可載"+truck.carry+"人.");
  11.         System.out.println(taxi.name+"有"+taxi.wheel+"個輪子,可載"+taxi.carry+"人.");
  12.     }
  13. }
  14. class Car
  15. {
  16.     String name;
  17.     int wheel;
  18.     int carry;
  19.     Car()
  20.     {
  21.     }
  22.     Car(String name)
  23.     {
  24.         this.name=name;
  25.     }
  26.     Car(int wheel,int carry)
  27.     {
  28.         this.wheel=wheel;
  29.         this.carry=carry;
  30.     }
  31.     Car(String name,int wheel,int carry)
  32.     {
  33.         this.name=name;
  34.         this.wheel=wheel;
  35.         this.carry=carry;
  36.     }
  37. }
複製代碼

TOP

  1. public class ch58
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         Car bus=new Car("公車",6,40);
  6.         Car truck=new Car(8,3);
  7.         truck.name="卡車";
  8.         Car taxi=new Car("計程車",4,5);
  9.         System.out.println(bus.name+"有"+bus.wheel+"個輪子,可載"+bus.carry+"人.");
  10.         System.out.println(truck.name+"有"+truck.wheel+"個輪子,可載"+truck.carry+"人.");
  11.         System.out.println(taxi.name+"有"+taxi.wheel+"個輪子,可載"+taxi.carry+"人.");
  12.     }
  13. }
  14. class Car
  15. {
  16.     String name;
  17.     int wheel;
  18.     int carry;
  19.     Car()
  20.     {
  21.     }
  22.     Car(String name)
  23.     {
  24.         this.name=name;
  25.     }
  26.     Car(int wheel,int carry)
  27.     {
  28.         this.wheel=wheel;
  29.         this.carry=carry;
  30.     }
  31.     Car(String name,int wheel,int carry)
  32.     {
  33.         this.name=name;
  34.         this.wheel=wheel;
  35.         this.carry=carry;
  36.     }
  37. }
複製代碼

TOP

  1. public class ch58   
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          Car x[]={new Car("公車"),new Car(8,3),new Car("計程車",4,5)};
  6.         x[0].wheel=6;
  7.                 x[0].carry=40;
  8.                 x[1].name="卡車";
  9.                 for(int i=0;i<3;i++)   
  10.                         System.out.println(x[i].name+"有"+x[i].wheel+"個輪子,可載"+x[i].carry+"人.");
  11.     }
  12. }
  13. class Car
  14. {
  15.     String name;
  16.     int wheel;
  17.     int carry;
  18.         Car()
  19.         {
  20.         }
  21.         Car(String n)
  22.         {
  23.                 name=n;
  24.         }
  25.         Car(int w,int c)
  26.         {
  27.                 wheel=w;
  28.                 carry=c;
  29.         }
  30.         Car(String n,int w,int c)
  31.         {
  32.                 name=n;
  33.                 wheel=w;
  34.                 carry=c;
  35.         }
  36. }
複製代碼

TOP

  1. public class ch58
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          Car bus=new Car("公車",6,40);
  6.          Car truck=new Car(8,3);
  7.          truck.name="卡車";
  8.          Car taxi=new Car("計程車",4,5);
  9.          System.out.println(bus.name+"有"+bus.wheel+"個輪子,可載"+bus.carry+"人.");
  10.          System.out.println(truck.name+"有"+truck.wheel+"個輪子,可載"+truck.carry+"人.");
  11.          System.out.println(taxi.name+"有"+taxi.wheel+"個輪子,可載"+taxi.carry+"人.");
  12.     }
  13. }
  14. class Car
  15. {
  16.     String name;
  17.     int wheel;
  18.     int carry;
  19.     Car()
  20.     {
  21.     }
  22.     Car(String name)
  23.     {
  24.         this.name=name;
  25.     }
  26.     Car(int wheel, int carry)
  27.     {
  28.         this.wheel=wheel;
  29.         this.carry=carry;
  30.     }
  31.     Car(String name, int wheel, int carry)
  32.     {
  33.         this.name=name;
  34.         this.wheel=wheel;
  35.         this.carry=carry;
  36.     }
  37. }
複製代碼

TOP

  1. public class ch58
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          Car bus=new Car("公車",6,40);
  6.          Car truck=new Car(8,3);
  7.          truck.name="卡車";
  8.          Car taxi=new Car("計程車",4,5);
  9.          System.out.println(bus.name+"有"+bus.wheel+"個輪子,可載"+bus.carry+"人.");
  10.          System.out.println(truck.name+"有"+truck.wheel+"個輪子,可載"+truck.carry+"人.");
  11.          System.out.println(taxi.name+"有"+taxi.wheel+"個輪子,可載"+taxi.carry+"人.");
  12.     }
  13. }
  14. class Car
  15. {
  16.     String name;
  17.     int wheel;
  18.     int carry;
  19.     Car()
  20.     {
  21.     }
  22.     Car(String name)
  23.     {
  24.         this.name=name;
  25.     }
  26.     Car(int wheel, int carry)
  27.     {
  28.         this.wheel=wheel;
  29.         this.carry=carry;
  30.     }
  31.     Car(String name, int wheel, int carry)
  32.     {
  33.         this.name=name;
  34.         this.wheel=wheel;
  35.         this.carry=carry;
  36.     }
  37. }
複製代碼

TOP

  1. public class ch58
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          Car bus=new Car("公車",6,40);
  6.          Car truck=new Car(8,3);
  7.          truck.name="卡車";
  8.          Car taxi=new Car("計程車",4,5);
  9.          System.out.println(bus.name+"有"+bus.wheel+"個輪子,可載"+bus.carry+"人.");
  10.          System.out.println(truck.name+"有"+truck.wheel+"個輪子,可載"+truck.carry+"人.");
  11.          System.out.println(taxi.name+"有"+taxi.wheel+"個輪子,可載"+taxi.carry+"人.");
  12.     }
  13. }
  14. class Car
  15. {
  16.     String name;
  17.     int wheel;
  18.     int carry;
  19.     Car()
  20.     {
  21.     }
  22.     Car(String name)
  23.     {
  24.         this.name=name;
  25.     }
  26.     Car(int wheel, int carry)
  27.     {
  28.         this.wheel=wheel;
  29.         this.carry=carry;
  30.     }
  31.     Car(String name, int wheel, int carry)
  32.     {
  33.         this.name=name;
  34.         this.wheel=wheel;
  35.         this.carry=carry;
  36.     }
  37. }
複製代碼

TOP

  1. public class ch58
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          Car bus=new Car("公車",6,40);
  6.          //Car truck=new Car("卡車");
  7.          Car truck=new Car(8,3);
  8.          //Car truck=new Car();
  9.          truck.name="卡車";
  10.          Car taxi=new Car("計程車",4,5);
  11.          System.out.println(bus.name+"有"+bus.wheel+"個輪子,可載"+bus.carry+"人.");
  12.          System.out.println(truck.name+"有"+truck.wheel+"個輪子,可載"+truck.carry+"人.");
  13.          System.out.println(taxi.name+"有"+taxi.wheel+"個輪子,可載"+taxi.carry+"人.");
  14.     }
  15. }
  16. class Car
  17. {
  18.     String name;
  19.     int wheel;
  20.     int carry;
  21.     Car()
  22.     {
  23.     }
  24.     Car(String name)
  25.     {
  26.         this.name=name;
  27.     }
  28.     Car(int wheel, int carry)
  29.     {
  30.         this.wheel=wheel;
  31.         this.carry=carry;
  32.     }
  33.     Car(String name, int wheel, int carry)
  34.     {
  35.         this.name=name;
  36.         this.wheel=wheel;
  37.         this.carry=carry;
  38.     }
  39. }
複製代碼

TOP

返回列表