[Java]String to Integer / Intger to String

재피터노트북·2022년 9월 26일
0

Java 정수 문자열을 int형으로 바꾸기.

알고리즘 문제를 풀어가다 정수를 문자열로 바꾼후 문자열에서 작업하고 문자열을 int형태로 다시 바꿔야하는 상황이 왔다.

Integer to String

  • 1. String.valueOf()

    • 코드

      int i = 200;
      String s = String.valueOf(i);
  • 2. Integer.toString()

    • 코드

      int i = 200;
      String s = Integer.toString(i);

String to Integer

  • 1. Integer.parseInt()

    • 코드
      String s = "123";
      int to = Integer.pareseInt(s);

참고자료

profile
난 이 재 선

0개의 댓글