What is differents between object and static object?

Questions by ap_rams

Showing Answers 1 - 14 of 14 Answers

partha

  • 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 .

g.kishore kumar

  • 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

  Was this answer useful?  Yes

Thenmalar

  • 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.

 

  Was this answer useful?  Yes

Anil Kanike

  • 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.

  Was this answer useful?  Yes

Anand Tiwari

  • Nov 23rd, 2014
 

A static object is a class all of whose members (functions and data) are declared static

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions