문자열을 정수로 바꾸기 Lv. 1

박영준·2022년 11월 21일
0

코딩테스트

목록 보기
5/300
class Solution {
    public int solution(String s) {
        int answer = 0;
        return answer;
    }
}

해결법

방법 1

class Solution {
    public int solution(String s) {
        int answer = 0;
        
        return answer = Integer.parseInt(s);
        
    }         
}
  • 문자열 string 타입 --> 숫자 타입

    • Byte.parseByte();

    • Short.parseShort();

    • Integer.parseInt();

    • Long.parseLong();

    • Float.parseFloat();

    • Double.parseDouble();

  • 예외
    - charAt() : char 타입은 이 형태로 사용
    - boolean 타입은 존재하지 않음 (true/false 로만 나오기 때문)

profile
개발자로 거듭나기!

0개의 댓글