- package kao;
- public class Dog {
- String name;
- int age;
- double weight;
- String colar;
- Dog(String name,int age,double weight,String colar){
- this.name=name;
- this.age=age;
- this.weight=weight;
- this.colar=colar;
- }
- public void showProfile(){
- System.out.println(String.format("%s今年%d歲,體重%f公斤,毛色為%s",this.name,this.age,this.weight,this.colar));
- }
- public void makeSound(int n){
- for(int i=0;i<n;i++)
- System.out.print("汪~");
- System.out.println();
- }
- }
複製代碼 |