本帖最後由 tonyh 於 2019-1-28 20:30 編輯
定義一Dog類別, 包含建構子及兩個方法.
showProfile() 用來顯示基本資料, makeSound(int n) 用來發出聲音.
- public class Ch59
- {
- 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);
- }
- }
- 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();
- }
- }
複製代碼 |