JAVA
String.valueOf() vs. Object.toString()
gajy
2022. 4. 2. 00:09
728x90
Object의 toString을 오버라이딩 했는데, 필드값 중 null이 있으면 exception이 발생하는 경우가 있다.
이러한 경우 String.valueOf()를 써주면 된다.
public static void main(String args[]) {
String str = null;
System.out.println(String.valueOf(str)); // This will print a String equal to "null"
System.out.println(str.toString()); // This will throw a NullPointerException
}
String.valueOf 소스코드를 보면 null 처리가 되어있다.
public static String valueOf(Object obj) {
return (obj == null) ? "null" : obj.toString();
}
728x90