posted 14 years ago
Usually, instance method gets the reference of the object through "this" implicit reference variable...
In static method, There will be no reference to the object on which the method is called...
instance method behaves depending on the object's state or properties...
static method does not concern about the state of the object and behaves common to all objects.. In other words, behaves in "Class scope"...
SCJP 6 [SCJP - Old is Gold]