用Java:创建一个猫类Cat,属性有年龄(int)、颜色(String)和品种(String),方法为输出各属性的值。再创建有main方法的Test类,在Test类中新建Cat类的一个对象,给该对象的各属性赋值后输出
时间: 2024-02-20 16:56:24 浏览: 97
好的,以下是用Java创建猫类Cat和测试类Test的代码:
```java
// Cat类
public class Cat {
private int age;
private String color;
private String breed;
public Cat(int age, String color, String breed) {
this.age = age;
this.color = color;
this.breed = breed;
}
public void printInfo() {
System.out.println("Age: " + age);
System.out.println("Color: " + color);
System.out.println("Breed: " + breed);
}
}
// Test类
public class Test {
public static void main(String[] args) {
Cat cat = new Cat(2, "white", "British Shorthair");
cat.printInfo();
}
}
```
在Test类中,我们新建了一个Cat类的对象cat,并给它的年龄、颜色和品种分别赋值为2、"white"和"British Shorthair"。然后我们调用cat的printInfo()方法,输出cat的各属性值。
阅读全文