首页 相关文章 Convert from type X to type Y

Convert from type X to type Y

integer to String :

int i = 42;String str = Integer.toString(i);
  

  or
  
String str = "" + i
  

  double to String :

String str = Double.toString(i);
  

  long to String :

String str = Long.toString(l);
  

  float to String :

String str = Float.toString(f);
  

  String to integer :

str = "25";int i = Integer.valueOf(str).intValue();
  

  or
  
int i = Integer.parseInt(str);
  [ 查看全文 ]

2016-02-19 标签:
手机页面 收藏网站 回到头部