java.lang.Object
Class
Object is the root of the class hierarchy.
Every class has Object as a superclass. All objects,
including arrays, implement the methods of this class.
Class
| Constructor Summary | |
Object
copy-> new Object()copy-> <Object var> = new Object(); |
|
| Method Summary | |
protected Object |
clone()
copy-> .clone()copy-> <Object var>=<Object>.clone();
|
boolean |
equals(Object obj)
copy-> .equals( )copy-> <boolean var>=<Object>.equals(<Object obj>);
|
protected void |
finalize()
copy-> .finalize()copy-> <Object>.finalize();
|
Class |
getClass()
copy-> .getClass()copy-> <Class var>=<Object>.getClass();
|
int |
hashCode()
copy-> .hashCode()copy-> <int var>=<Object>.hashCode();
|
void |
notify()
copy-> .notify()copy-> <Object>.notify();
|
void |
notifyAll()
copy-> .notifyAll()copy-> <Object>.notifyAll();
|
String |
toString()
copy-> .toString()copy-> <String var>=<Object>.toString();
|
void |
wait()
copy-> .wait()copy-> <Object>.wait();
|
void |
wait(long timeout)
copy-> .wait( )copy-> <Object>.wait(<long timeout>);
|
void |
wait(long timeout,
int nanos)
copy-> .wait(, )copy-> <Object>.wait(<long timeout>, <int nanos>);
|