java 數字轉字串 字串轉數字
1.數字轉字串
1-1 整數轉字串
int
i = 7;
String s = Integer.toString(i);
or
String s = "" + i;//直接強制轉型
1-2 長整數轉字串
long x=10;
String s = Long.toString(x);
1-3 雙精度數字轉字串
double x=10;
String s = Double.toString(x);
1-4 浮點數字轉字串
float x=10;
String s = Float.toString(x);
2.字串轉數字
2-1 字串轉整數
String str = "10";
int i = Integer.valueOf(str).intValue(); //第一種方法
int j = new Integer(str).intValue(); //第二種方法
int k = Integer.parseInt(str);
//第三種方法
2-2 字串轉雙精度數字
double d = Double.valueOf(str).doubleValue();
2.3 字串轉長型態數字
long l =
Long.valueOf(str).longValue();
or
long l = Long.parseLong(str);
2.4 字串轉浮點型態數字
float f =
Float.valueOf(str).floatValue();
留言
張貼留言