Object Class JAVA의 모든 Class의 부모 Class 기본적이며 필수적인 기능을 제공한다. 주요기능 finalize : Instance의 소멸자 //finalize formula @Override protected void finalize() throws Throwable { super.finalize(); System.out.println("call destructor " + name); } equals : Instance의 비교 == (비교 연산자)는 참조값만을 비교한다는것이 다르다. @Override public boolean equals(Object o) { try { if ((this.Xpos == ((point)o).Xpos) && (this.Ypos == ((point)o).Y..