삶의 늪에 들어 가기 전/정리중(미정리)
[JAVA] 자바에서 자주쓰이는 형변환 정리
[JAVA] 자바에서 자주쓰이는 형변환 정리 자바에서 자주 쓰이는 형변환을 모아보았다. 매번 까먹는 관계로..(?) 정리 목차int to StringString to intdouble to Stringlong to Stringfloat to StringString to doubleString to longString to floatdecimal to binarydecimal to hexadecimalhexadecimal(String) to intASCII Code to StringInteger to ASCII CodeInteger to booleanboolean to Integer 예제 코드1. int to String String str = Integer.toString(i); String str = ..