2013年1月13日

Android int 和 String 互相轉換的多種方法


int 和 String 互相轉換的多種方法
 
如何將字串 String 轉換成整數 int

(A) int i = Integer.parseInt("12345");
(B) int i = Integer.valueOf("12345").intValue();

字串String轉成 Double,Float,Long 的方法相同


如何將整數 int 轉換成字串 String
(A) String s = String.valueOf(12345);
(B) String s = Integer.toString(12345);
(C) String s = "" + 12345;

Double,Float,Long 轉成字串String的方法相同

沒有留言:

張貼留言