黑马程序员技术交流社区
标题:
来讲讲nteger的parseInt方法和intValue的区别
[打印本页]
作者:
RockLee
时间:
2015-6-25 00:04
标题:
来讲讲nteger的parseInt方法和intValue的区别
package days23;
/*
* 需求:弄清楚Integer的parseInt方法和intValue的区别
* 分析:他们都可以把字符串转换成int型数据
* 但parseInt是类Integer的静态方法,无需实例化,而intValue的则不是。且运用范围也不是一样,intValue的范围一般
* 作用于已经被Integer实例String字符串
*/
public class Test6 {
public static void main(String[] args) {
System.out.println(Integer.parseInt("1234"));
Integer i = new Integer("1234");
System.out.println(i.intValue());
}
}
复制代码
作者:
RockLee
时间:
2015-6-25 00:05
parseInt是类Integer的静态方法,无需实例化,而intValue的则不是。且运用范围也不是一样,intValue的范围一般
* 作用于已经被Integer实例String字符串
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2