partha
Answered On : Feb 6th, 2006
static object is not there.only static variables,static methods r there.static variables means it will be shared by all the objects.static method means with out creating the object we can acess the method by class name .

2 Users have rated as useful.
Login to rate this answer.
one more thing to note, static method can only able to acess static variables....

1 User has rated as useful.
Login to rate this answer.
g.kishore kumar
Answered On : Mar 28th, 2006
hi to all Implementing runnabale interface to class is more advantage when compare to the class that entending the Thread class. if we extending the Thread class we are not able to extend another class.if we implement the runnable interface the class has a chance to extending the another class
Login to rate this answer.
Thenmalar
Answered On : May 11th, 2006
hi,
If any object is declared as STATIC. It shares the Memory space for the instances of that object.but in the case of simple object , The separate memory space will b created for each instances.
Thank u.
Login to rate this answer.
Anil Kanike
Answered On : Jun 6th, 2006
An Object is an physical entity of logical class definition where as static object is an object which can't allow to create more than one instance in the heap.
Login to rate this answer.
in java there is no concept of static object

1 User has rated as useful.
Login to rate this answer.
An Object is an physical entity of logical class definition, and in Java there is nothing called static object.

1 User has rated as useful.
Login to rate this answer.