如何將字串 String 轉換成整數 int?
A
有兩個方法:
)
int i = Integer
parseInt([String]); 或
i = Integer
parseInt([String]
[int radix]);
)
int i = Integer
valueOf(my_str)
intValue();
注: 字串轉成 Double
Float
Long 的方法大同小異
如何將整數 int 轉換成字串 String ?
A
有三種方法:
) String s = String
valueOf(i);
) String s = Integer
toString(i);
) String s =
+ i;
注: Double
Float
Long 轉成字串的方法大同小異
From:http://tw.wingwit.com/Article/program/Java/hx/201311/26827.html