当前位置:早雪网网络学院编程文档Java → int 和 String 互相转换的多种方法

int 和 String 互相转换的多种方法

减小字体 增大字体 作者:不详  来源:supcode.com收集整理  发布时间:2005-7-22 18:52:22
1 如何将字串 String 转换成整数 int? 

A. 有两个方法:

1). int i = Integer.parseInt([String]); 或 
i = Integer.parseInt([String],[int radix]);

2). int i = Integer.valueOf(my_str).intValue(); 

注: 字串转成 Double, Float, Long 的方法大同小异. 


2 如何将整数 int 转换成字串 String ? 


A. 有叁种方法:

1.) String s = String.valueOf(i);

2.) String s = Integer.toString(i); 

3.) String s = "" + i; 

注: Double, Float, Long 转成字串的方法大同小异. 

Tags:int,String,互相,转换,多种,方法
[数据载入中...] [返回上一页] [打 印]