posted by changhozz 2012. 5. 31. 00:17

Integer.parseInt(String s)  - 문자열을 숫자로 계산해줌.

ex)MethodOverload test = new MethodOverload();
      test.plus("1", "2", "3");

 public void plus(String a, String b, String c) {
    int x = Integer.parseInt(a);
    int y = Integer.parseInt(b);
    int z = Integer.parseInt(c);
    System.out.println(x+y+z);
   }

console = 6

'JAVA > 여러가지 메서드' 카테고리의 다른 글

IndexOf , Substring  (0) 2012.07.20
기본형 ㅡ>문자열 , 문자열 ㅡ>기본형  (0) 2012.07.20
int를 String으로 parse  (0) 2012.07.20
Collection  (0) 2012.07.17
랜덤  (0) 2012.07.11