Board logo

標題: 建構子 (三) [打印本頁]

作者: tonyh    時間: 2013-9-7 17:16     標題: 建構子 (三)

  1. public class ch78
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         Ball b1=new Ball(18.4,"red ball");
  6.         System.out.println("名稱: "+b1.getName());
  7.         System.out.println("半徑: "+b1.getRadius());
  8.     }
  9. }

  10. class Ball
  11. {
  12.     double radius;
  13.     String name;

  14.     public Ball(double radius, String name)
  15.     {
  16.         this.radius=radius;
  17.         this.name=name;
  18.     }

  19.     public double getRadius()
  20.     {
  21.         return radius;
  22.     }

  23.     public String getName()
  24.     {
  25.         return name;
  26.     }
  27. }
複製代碼

作者: t2364705    時間: 2013-9-7 17:20

  1. public class ch78
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         Ball b1=new Ball(18.4,"red ball");
  6.         System.out.println("名稱:"+b1.getName());
  7.         System.out.println("半徑:"+b1.getRadius());
  8.     }
  9. }
  10. class Ball
  11. {
  12.     double radius;
  13.     String name;
  14.     public Ball(double radius, String name)
  15.     {
  16.         this.radius=radius;
  17.         this.name=name;
  18.     }
  19.     public double getRadius()
  20.     {
  21.         return radius;
  22.     }
  23.     public String getName()
  24.     {
  25.         return name;
  26.     }
  27. }
複製代碼

作者: 黃博鴻    時間: 2013-9-7 17:23

  1. public class ch78
  2. {
  3.      public static void main(String args[])
  4.      {
  5.          Ball d1=new Ball(18.4,"red Ball");
  6.          System.out.println("名稱: "+d1.getName());
  7.          System.out.println("半徑: "+d2.getRadius());
  8.      }
  9. }
  10. class Ball
  11. {
  12.     double radius;
  13.     String name;
  14.     public Ball(double radius,String name)
  15.     {
  16.        this.radius=radius;
  17.        this.name=name;
  18.     }
  19.     public int getRadius()
  20.     {
  21.        return radius;
  22.     }
  23.     public String getName()
  24.     {
  25.        return name;
  26.     }
  27. }
複製代碼

作者: 尤泓鈞    時間: 2013-9-7 17:31

  1. public class ch78
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         Ball b1=new Ball(18.4,"red ball");
  6.         System.out.println("名稱: "+b1.getName());
  7.         System.out.println("半徑: "+b1.getRadius());
  8.     }
  9. }
  10. class Ball
  11. {
  12.     double radius;
  13.     String name;
  14.     public Ball(double radius, String name)
  15.     {
  16.         this.radius=radius;
  17.         this.name=name;
  18.     }
  19.     public double getRadius()
  20.     {
  21.         return radius;
  22.     }
  23.     public String getName()
  24.     {
  25.         return name;
  26.     }
  27. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2