티스토리 뷰

카테고리 없음

Object 클래스

신규_유저 2021. 3. 11. 16:47
//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
댓글
링크
공지사항
최근에 올라온 글