Skip to content
Aleksandr Kuchuk edited this page May 22, 2016 · 14 revisions

In Java each class inherits Object and has their methods. What methods?

Methods: Object in Java has:

  • .toString()
  • .clone()
  • .hashCode()
  • .wait()
  • .notify()
  • .notifyAll()
  • .equals()
  • .finalize()
  • .getClass()

But what each method do? And why these so important? //todo

Clone this wiki locally