返回列表 發帖

建構子 (三)

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

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

TOP

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

TOP

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

TOP

返回列表