Ask Question

Write a class for a Cat that is a subclass of Pet. In addition to a name and owner, a cat will have a breed and will say "meow" when it speaks. Additionally, a Cat is able to purr (print out "Purring ... " to the console).

+5
Answers (1)
  1. 3 June, 08:36
    0
    The Java class is given below with appropriate tags for better understanding

    Explanation:

    public class Cat extends Pet{

    private String breed;

    public Cat (String name, String owner, String breed) {

    / * implementation not shown * /

    super (name, owner);

    this. breed = breed;

    }

    public String getBreed () {

    return breed;

    }

    public void setBreed (String breed) {

    this. breed = breed;

    }

    public String speak () { / * implementation not shown * /

    return "Purring ...";

    }

    }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write a class for a Cat that is a subclass of Pet. In addition to a name and owner, a cat will have a breed and will say "meow" when it ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers