Transition between different variable types
This is one of the most important parts in Java. Keep concentrating and Memorize it.
문자열->숫자 : Integer.parseInt(), Double.parseDouble()
문자열->문자 : str.charAt(0)
문자와 숫자간의 변환 : 문자0을 더하거나 뺌으로써 가능하다.
'3' - ' ' = 3(숫자).
3 + ' ' = '3'(문자) 이지만 실제로는 '0'이 문자이기 때문에 문자0의 숫자값 48과 3을 더한 51이 출력된다.
2. 문자열로의 변환
3. 문자열을 숫자로 변환 : Integer.parseInt("3"), Double.parseDouble("3.4")
4. 문자열을 문자로 변환 : "3".charAt(0) = '3'
Last updated