public class Foo {
public static void main(String args[]) {
String s = "1000";
// 문자열 정의
int i = Integer.parseInt(s) + 1;
// 32비트 정수로 그리고 1을 더하기
System.out.println(i);
// 출력: 1001
long L = Long.parseLong(s) + 1;
// 64비트 정수로 그리고 1을 더하기
System.out.println(L);
// 출력: 1001
float f = Float.parseFloat(s) + 1.0F;
// 32비트 실수로 그리고 1을 더하기
System.out.println(f);
// 출력: 1001.0
double d = Double.parseDouble(s) + 1.0;
// 64비트 실수로 그리고 1을 더하기
System.out.println(d);
// 출력: 1001.0
}
}
public static void main(String args[]) {
String s = "1000";
// 문자열 정의
int i = Integer.parseInt(s) + 1;
// 32비트 정수로 그리고 1을 더하기
System.out.println(i);
// 출력: 1001
long L = Long.parseLong(s) + 1;
// 64비트 정수로 그리고 1을 더하기
System.out.println(L);
// 출력: 1001
float f = Float.parseFloat(s) + 1.0F;
// 32비트 실수로 그리고 1을 더하기
System.out.println(f);
// 출력: 1001.0
double d = Double.parseDouble(s) + 1.0;
// 64비트 실수로 그리고 1을 더하기
System.out.println(d);
// 출력: 1001.0
}
}
댓글
댓글 쓰기