OverrideMethodExample -- invoking an overridden method from inside an inherited method.
To see this example in action:
  1. Compile the Java source file, OverrideMethodExample.java:
    	javac OverrideMethodExample.java
    
  2. Run the class:
    	java OverrideMethodExample
    


Output:
    up.speak():  My number = 2
    reallyUp.speak():  My number = 101

The source.