CJCoding With Joseph

Interface Inheritance

One interface can extend another. IPet extends IAnimal, so a class implementing IPet must supply Name() (from IAnimal) AND Owner(). Complete the Cat class so Name() returns the stored name and Owner() returns the stored owner. Do NOT write a Main method.

For a Cat named Whiskers owned by Sam the program prints:
Whiskers
Sam

Expected Output:

Whiskers
Sam
Topics:
Interfaces
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.