반응형 char to int1 Char To Int (The method parseInt(String) in the type Integer is not applicable for the arguments (char))(getNumericValue) String to Int 는 다들 알다시피 String.ValueOf 함수를 사용하면 된다. Char To Int 가 출력으로는 나올수 있으나배열에서 자릿수를 숫자로 할때 에러가 발생하였다. 에러는 아래와 같다.The method parseInt(String) in the type Integer is not applicable for the arguments (char) 해결법은 아래와 같다.char c = '1;int numericValue = Character.getNumericValue(c); 2024. 9. 16. 이전 1 다음 반응형