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

Class Dog

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected