I have this code form the book SCJP:
1. class Mammal {
2. String name = "furry ";
3. String makeNoise() { return "generic noise"; }
4. }
5.
6. class Zebra extends Mammal {
7. String name = "stripes ";
8. String makeNoise() { return "bray"; }
9. }
10.
11. public class ZooKeeper {
12. public static void main(String[] args) {
13. new ZooKeeper().go();
14. }
15.
16. void go() {
17. Mammal m = new Zebra();
18. System.out.println(m.name + m.makeNoise());
19. }
20. }
The result from running this code is "furry bray".
Question 1
I don't understand why line 17 is not : Zebra zebra2 = new Zebra();
What is the purpose in each of the following cases, when to use which?
Mammal zebra1 = new Zebra();
vs
Zebra zebra2 = new Zebra();
Question 2
Why is the variable name = "stripes" from the Zebra class overridden by the name = "furry" from the Mammal class? I expect the opposote: the variable from subclass will override that from superclass.