고똘이의 IT 개발이야기

안녕하세요.

오늘은 문자, 숫자형을 형변환 하는것에 대해서 설명 드리겠습니다.

 

1. 문자 > 숫자

1
2
3
4
5
6
// 문자 > 숫자
String text = "100";
 
int number = Integer.parseInt(text);
 
System.out.println(number); // 100이라는 숫자로 변환.

2. 문자 > Double, Float

1
2
3
4
5
6
7
8
// 문자형을 > Double이나 Float로 변환.
 
String text= "10";
 
double dou = Double.valueOf(text); // Double
 
float flo = Float.valueOf(text); // Float
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

3. 숫자 > 문자

1
2
3
4
5
6
7
// 숫자 > 문자
 
int number = 100;
 
String text = String.valueOf(number); // 100이라는 숫자를 "100"이라는 문자형으로 변환.
        
 

 

오늘은 형변환에 대해서 알아봤습니다.

도움이 되셨다면 좋아요와 댓글 달아주시면 감사하겠습니다.

이 글을 공유합시다

facebook twitter googleplus kakaoTalk kakaostory naver band