Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Spring
- 배열
- 전화걸기
- 생성자
- OGNL
- mybatis
- 이클립스
- struts2
- HTML
- JSP
- Graphic
- oracle
- Android
- AWT
- paint
- 국제화
- 메서드
- JavaScript
- Eclips
- Menu
- 안드로이드
- 오버로딩
- 기본
- 에러페이지
- 어노테이션
- 메소드
- layout
- Java
- 예외처리
- 클래스
Archives
- Today
- Total
note
getClass() hasCode() toString()메서드 본문
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
'자바 > 중요 클래스들' 카테고리의 다른 글
String클래스의 내용비교를 위한 equals 메서드 (0) | 2011.12.27 |
---|---|
String클래스 (0) | 2011.12.27 |
String클래스의 내용비교를 위한 equals 메서드 (0) | 2011.12.27 |
toSting클래스 재정의 (0) | 2011.12.27 |
toSting()클래스 (0) | 2011.12.27 |