Showing posts with label object clone. Show all posts
Showing posts with label object clone. Show all posts

Wednesday, 22 January 2014

The Object class in java

what are the methods define object in java

The object class:


There is one special class, Object, defined by Java. All other classes are subclasses of Object.That is, Objectis a superclass of all other classes. This means that a reference variable of type Object can refer to an object of any other class. Also, since arrays are implemented as classes,a variable of type Object can also refer to any array.