Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Dog extends Animal{
- int color;
- public Dog(String name, int age, int color) {
- super(name, age);
- this.color = color;
- }
- @Override
- public void getSong() {
- System.out.println("Гав");
- }
- }
Add Comment
Please, Sign In to add comment