MCPcopy Create free account
hub / github.com/careercup/ctci / Cat

Class Cat

java/Chapter 3/Question3_7/Cat.java:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package Question3_7;
2
3public class Cat extends Animal {
4 public Cat(String n) {
5 super(n);
6 }
7
8 public String name() {
9 return "Cat: " + name;
10 }
11}
12

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected