2012年2月21日 星期二

android -- string

Int --> String

/* 如何將一整數(4)轉為字串("4")*/

int anInteger = 4; //設一整數變數

//有三種方式
String integerValueToString = Integer.toString(anInteger);//Ans:4
String valueOfIntegerInString = String.valueOf(anInteger);//Ans:4
String stringValue = new String("" + anInteger);//Ans:4

String string = String.format("I have %d children", 5);



沒有留言:

張貼留言