本帖最後由 tonyh 於 2015-3-21 14:03 編輯
定義一Dog類別, 包含屬性, 建構子, 與方法.
以建構子生成實體物件, 利用showProfile()方法顯示物件資訊, makeSound(n)方法顯示叫n聲.
- public class ch60
- {
- public static void main(String args[])
- {
- Dog d1=new Dog(); //在Dog類別下,新增一個名為d1的物件
- d1.name="憨憨";
- d1.color="紅棕色";
- d1.age=2;
- d1.w=1.3f;
- Dog d2=new Dog("球球","白色",1,1.2f);
- d1.showProfile();
- d1.makeSound(2);
- d2.showProfile();
- d2.makeSound(3);
- }
- }
- class Dog
- {
- String name;
- String color;
- int age;
- float w;
- Dog()
- {
- }
- Dog(String name, String color, int age, float w)
- {
- this.name=name;
- this.color=color;
- this.age=age;
- this.w=w;
- }
- void showProfile()
- {
- System.out.println(name+"今年"+age+"歲,體重"+w+"公斤,毛色為"+color+".");
- }
- void makeSound(int n)
- {
- for(int i=0; i<n; i++)
- System.out.print("汪~");
- System.out.println();
- }
- }
複製代碼 |