본문 바로가기
[ Web ]/JAVA_JSP_TOMCAT_Eclipse

형변환/올림/반올림/버림

by 관이119 2012. 9. 13.

Integer.parseInt(문자형변수)
문자형을 숫자형으로..

Integer.toString(숫자형변수)
숫자형을 문자형으로..


강제 형변환
(int) 변수
(float) 변수
...
ex) int Smith = (int) Mulder;
ex) float Mulder = (float) Smith;
...


올림
Math.ceil(변수)

내림
Math.floor(변수)

반올림
Math.round(변수

 

댓글