標題:
[隨堂測驗] 物件導向基礎概念 (四)
[打印本頁]
作者:
李泳霖
時間:
2020-11-6 18:35
標題:
[隨堂測驗] 物件導向基礎概念 (四)
本帖最後由 李泳霖 於 2020-11-6 23:39 編輯
延續 物件導向基礎概念 (三) 的練習,新增一Cat類別,並以建構子生成一隻叫「咪咪」的貓,參考執行畫面如下:
public class Ch61
{
public static void main(String[] args)
{
Dog d1=new Dog("憨憨",2,1.3,"紅棕色");
Dog d2=new Dog("球球",1,1.2,"白色");
d1.showProfile();
d1.makeSound(2);
d2.showProfile();
d2.makeSound(3);
Cat c1=new Cat("咪咪",3,1.5,"銀灰色");
c1.showProfile();
c1.makeSound(5);
}
}
class Dog
{
String name, color;
int age;
double w;
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+"歲,體重"+w+"公斤,毛色為"+color+".");
}
void makeSound(int n)
{
for(int i=1; i<=n; i++)
System.out.print("汪~");
System.out.println();
}
}
class Cat
{
String name, color;
int age;
double w;
Cat(String n, int a, double w, String c)
{
name=n;
age=a;
this.w=w;
color=c;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤,毛色為"+color+".");
}
void makeSound(int n)
{
for(int i=1; i<=n; i++)
System.out.print("喵~");
System.out.println();
}
}
複製代碼
作者:
林祐霆
時間:
2020-11-6 20:33
此帖僅作者可見
作者:
謝以愛
時間:
2020-11-6 20:34
此帖僅作者可見
作者:
謝以恩
時間:
2020-11-6 20:37
此帖僅作者可見
作者:
洪承廷
時間:
2020-11-6 20:38
此帖僅作者可見
作者:
尤爾呈
時間:
2020-11-6 20:38
此帖僅作者可見
作者:
蘇韋誠
時間:
2020-11-6 20:39
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2