Saturday, March 19, 2011

Object Class

class Object { }


This is a predefine class done by Sun Microsystems.
Every class that we are implementing are sub classes of this predefine class.


ex-:


class A extends Object { }


In here class A   is the class we implemented.
extends Object is the code part automatically created.This part we cannot see.


Important



  • One class can only has a one super class.
  • So every classes we have designed are sub classes of the Object class directly or non-directly.

-Thank you-

No comments:

Post a Comment