標題:
【066】物件導向基礎概念 (三)
[打印本頁]
作者:
tonyh
時間:
2023-5-17 15:48
標題:
【066】物件導向基礎概念 (三)
定義一Dog類別,包含建構子及兩個方法。
showProfile() 用來顯示基本資料,makeSound(int n) 用來發出聲音。
本帖隱藏的內容需要回復才可以瀏覽
作者:
王捷恩
時間:
2023-5-17 16:16
public class A {
public static void main(String[] args) {
Dog d1=new Dog("dog 1", 2, 1.3, "brown");
Dog d2=new Dog("dog 2", 1, 1.2, "white");
d1.showProfile();
d1.makeSound(2);
d2.showProfile();
d2.makeSound(3);
}
}
class Dog {
String name, color;
double w;
int age;
Dog(String n, int a, double w, String c)
{
name=n;
age=a;
this.w=w;
color=c;
}
void showProfile()
{
System.out.println(name+"age"+age+"weight"+w+"color of fur"+color+".");
}
void makeSound(int n)
{
for(int i=1; i<=n; i++)
System.out.print("woof");
System.out.println();
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2