32 lines
577 B
Java
32 lines
577 B
Java
package Main;
|
|
|
|
public class Cat extends Animal implements Jumpable {
|
|
String color;
|
|
|
|
public Cat(String name, String spec, int age, String color) {
|
|
super(name, spec, age);
|
|
this.color = color;
|
|
}
|
|
|
|
static void doNastyThings() {
|
|
System.out.println("...and doing nasty things...");
|
|
}
|
|
|
|
public String getColor() {
|
|
return this.color;
|
|
}
|
|
|
|
@Override
|
|
public void jump() {
|
|
System.out.println("Cat is jumping!");
|
|
|
|
}
|
|
|
|
@Override
|
|
public void land() {
|
|
System.out.println("Cat is landing!");
|
|
|
|
}
|
|
|
|
}
|