1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-13 02:04:23 +02:00

Modified as said to by a Collaborator

This commit is contained in:
bk2dcradle
2015-10-05 01:38:02 +05:30
parent 6b6f88c64d
commit d8efd3ba34

View File

@@ -477,9 +477,9 @@ public abstract class Animal
age = 30; age = 30;
} }
// No need to initialise, however in an interface // No need to initialize, however in an interface
// a variable is implicitly final and hence has // a variable is implicitly final and hence has
// to be initialised. // to be initialized.
private int age; private int age;
public void printAge() public void printAge()
@@ -509,7 +509,7 @@ class Dog extends Animal
// @Override annotation here, since java doesn't allow // @Override annotation here, since java doesn't allow
// overriding of static methods. // overriding of static methods.
// What is happening here is called METHOD HIDING. // What is happening here is called METHOD HIDING.
// Check out this awesome SO post: (http://stackoverflow.com/questions/16313649/) // Check out this awesome SO post: http://stackoverflow.com/questions/16313649/
public static void main(String[] args) public static void main(String[] args)
{ {
Dog pluto = new Dog(); Dog pluto = new Dog();