티스토리 뷰
//Object class 의 메소드 내용 일부 내용 체크하는 예제
class Point {
private int x, y;
public Point(int x, int y) {
this.x = x;
this.y = y;
}
}
public class Exam06 {
public static void print(Object obj) {
System.out.println(obj.getClass()); // 클래스 이름
System.out.println(obj.hashCode()); // 해시코드 값
System.out.println(obj.toString()); // 객체를 문자열로 만들어 출력
System.out.println(obj); // 객체 출력
}
public static void main(String[] ar) {
Point p = new Point(2, 3);
print(p);
System.out.println();
System.out.println("p="+p);
System.out.println("getClass()="+p.getClass());
System.out.println("hashCode()="+p.hashCode());
System.out.println("toString()="+p.toString());
// System.out.println();
}
}
반응형
LIST
댓글