Guys do we inherit from Object like from any other class (except of course that we don\'t have to explicitly state that) or there is some special privileges to Object class
Everything is an Object in Java. All of the methods of Object (toString(), wait(), etc.) can be called on any instance of any Java class.
toString()
wait()