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
- VirtualBox
- web.xml
- netsh
- xargs
- bash
- vscode
- find
- 네트워크
- plugin
- port
- Windows
- profile
- JavaScript
- tomcat
- context
- Windows 10
- 줄바꿈 문자
- GIT
- import
- resource
- Quartz
- Source
- maVen
- Mac
- ssh
- grep
- IntelliJ
- lsof
- 단축키
- Eclipse
Archives
- Today
- Total
develog
Object.toString(), System.identityHashCode() 본문
Object obj = new Object();
System.out.println("1. " + obj.toString());
System.out.print("2. ");
System.out.print(obj.getClass().getName());
System.out.print("@");
System.out.print(Long.toHexString(System.identityHashCode(obj)));
System.out.println();
// console
1. java.lang.Object@1c78e57
2. java.lang.Object@1c78e57
'Dev > Java' 카테고리의 다른 글
generate file name (0) | 2013.07.02 |
---|---|
String 비교 (0) | 2013.07.02 |
진수 변환 (0) | 2013.07.02 |
log4sql (0) | 2013.06.28 |
spring pointcut expression syntax (0) | 2013.06.27 |
Comments