標題:
建構子 (三)
[打印本頁]
作者:
tonyh
時間:
2013-9-7 17:16
標題:
建構子 (三)
public class ch78
{
public static void main(String args[])
{
Ball b1=new Ball(18.4,"red ball");
System.out.println("名稱: "+b1.getName());
System.out.println("半徑: "+b1.getRadius());
}
}
class Ball
{
double radius;
String name;
public Ball(double radius, String name)
{
this.radius=radius;
this.name=name;
}
public double getRadius()
{
return radius;
}
public String getName()
{
return name;
}
}
複製代碼
作者:
t2364705
時間:
2013-9-7 17:20
public class ch78
{
public static void main(String args[])
{
Ball b1=new Ball(18.4,"red ball");
System.out.println("名稱:"+b1.getName());
System.out.println("半徑:"+b1.getRadius());
}
}
class Ball
{
double radius;
String name;
public Ball(double radius, String name)
{
this.radius=radius;
this.name=name;
}
public double getRadius()
{
return radius;
}
public String getName()
{
return name;
}
}
複製代碼
作者:
黃博鴻
時間:
2013-9-7 17:23
public class ch78
{
public static void main(String args[])
{
Ball d1=new Ball(18.4,"red Ball");
System.out.println("名稱: "+d1.getName());
System.out.println("半徑: "+d2.getRadius());
}
}
class Ball
{
double radius;
String name;
public Ball(double radius,String name)
{
this.radius=radius;
this.name=name;
}
public int getRadius()
{
return radius;
}
public String getName()
{
return name;
}
}
複製代碼
作者:
尤泓鈞
時間:
2013-9-7 17:31
public class ch78
{
public static void main(String args[])
{
Ball b1=new Ball(18.4,"red ball");
System.out.println("名稱: "+b1.getName());
System.out.println("半徑: "+b1.getRadius());
}
}
class Ball
{
double radius;
String name;
public Ball(double radius, String name)
{
this.radius=radius;
this.name=name;
}
public double getRadius()
{
return radius;
}
public String getName()
{
return name;
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2