| Author |
static : Bug in K&B P-145
|
Sandeep Vaid
Ranch Hand
Joined: Feb 27, 2006
Posts: 390
|
|
At Page 145 (K& B book) So, the way we access a static method (or static variable) is to use the dot operator on the class name, as opposed to using it on a reference to an instance.
|
 |
Vishal K Patel
Ranch Hand
Joined: Oct 20, 2006
Posts: 43
|
|
static members can be accessed by the [instanse_name.static_member]. Neither compiler nor JVM complains about this. But the resul remains same whether one use class name or instanse name.
|
 |
Matt Russell
Ranch Hand
Joined: Aug 15, 2006
Posts: 165
|
|
|
At the bottom of that page, K&B say, "the Java language also allows you to use an object reference to access a static member".
|
Matt
Inquisition: open-source mock exam simulator for SCJP and SCWCD
|
 |
Burkhard Hassel
Ranch Hand
Joined: Aug 25, 2006
Posts: 1274
|
|
Hi cowboys, this isn't a bug. One sentence before, it is said that
But this approach (using a reference to an object) isn't appropriate for accessing a static method, (...)
Yours, Bu.
|
all events occur in real time
|
 |
 |
|
|
subject: static : Bug in K&B P-145
|
|
|