与String有关的强制转换

String --> int

int i = Integer.parseInteger("123");

String --> double

double d = Double.parseDouble("1.0");
String --> float

float f = Float.parseFloat("1.0f");

int --> String

String s = Integer.toString(i);

double --> String

String s =Double.toString(d);

float --> String

String s = Float.toString(d);

posted @ 2016-03-22 10:18  非非是  阅读(170)  评论(0编辑  收藏  举报