码迷,mamicode.com
首页 > 其他好文 > 详细

String--int互转

时间:2018-10-04 21:35:47      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:col   str   tostring   valueof   string   eof   new   color   int   

A:int -->String

1.String s1 = "" + 100;

2.String s2 = String.valueof(100);

3.(int -- Integer -- String)

Integer i = new Integer(100);

 String s3 = i.toString();

4.String s4 = Integer.toString(100);

B:String --> int

String s = "100";

1.(String -- Integer -- int)

Integer it = new Integer(s);

int i1 = it.intValue();

2.int i2 = Integer.parseInt(s);

String--int互转

标签:col   str   tostring   valueof   string   eof   new   color   int   

原文地址:https://www.cnblogs.com/ayeex/p/9743343.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!