note

getClass() hasCode() toString()메서드 본문

자바/중요 클래스들

getClass() hasCode() toString()메서드

투한 2011. 12. 27. 11:20
package com.objectex;//getClass() hasCode() toString()메서드

//암묵적으로 object가 상속되어 있음
class Point{
}

public class ObjectTest00 {
	public static void main(String[] args) {
		Point obj = new Point();
		System.out.println("클래스 이름  : "+obj.getClass());
		
		//객체를 식별할 수 있는(값10진수 형태)
		System.out.println("해쉬 코드  : "+obj.hashCode());
		//클래스명@16진수 형태
		System.out.println("객체 문자열(참조값) : "+obj.toString());


		System.out.println("=-=-=-=-=-=-=-=-=-=" +
				"-=-=-=-=-=-=-=-=-=-=-=-=-");

		Point obj02 = new Point();

		System.out.println("클래스 이름  : "+obj02.getClass());
		System.out.println("해쉬 코드  : "+obj02.hashCode());
		System.out.println("객체 문자열(참조값) : "+obj02.toString());
	}
}


클래스 이름  : class com.objectex.Point
해쉬 코드  : 11918020
객체 문자열(참조값) : com.objectex.Point@b5dac4
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
클래스 이름  : class com.objectex.Point
해쉬 코드  : 19764978
객체 문자열(참조값) : com.objectex.Point@12d96f2