ParseInt
String > int
1
2
3
4
5
6
|
int num;
String s = "4";
num = Integer.parseInt(s);
System.out.println(num);
|
cs |
toString
int > String
1
2
3
|
int s=140;
String str=Integer.toString(s);
System.out.println(str);
|
cs |
'JAVA > F' 카테고리의 다른 글
[자바] String 관련 함수/메소드 (0) | 2020.10.13 |
---|---|
[자바] 비어있는지 확인하는 함수 / isEmpty() (0) | 2020.10.12 |
[자바] 앞 뒤 스페이스 / 공백 제거 함수 : trim() (0) | 2020.10.12 |
[자바] Math.abs() / 절대값 함수 (0) | 2020.10.07 |
[자바] 대문자를 소문자로, 소문자를 대문자로 바꿔주기 (0) | 2020.09.28 |
[자바] 랜덤함수 / Math.random() (0) | 2020.09.24 |
[자바] Equals (0) | 2020.09.23 |