반응형
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);
반응형
'IT > Java' 카테고리의 다른 글
[Error] Invalid character found in method name / HTTP method names must be tokens (12) | 2024.10.05 |
---|---|
ApiGateway 예제 (17) | 2024.09.28 |
모던 자바(Modern JAVA) 란? (19) | 2024.09.02 |
@Order 어노테이션 (10) | 2024.08.24 |
CSV 파일읽어서 Repository 설정 방법 (8) | 2024.08.21 |
댓글