黑马程序员技术交流社区

标题: 来讲讲nteger的parseInt方法和intValue的区别 [打印本页]

作者: RockLee    时间: 2015-6-25 00:04
标题: 来讲讲nteger的parseInt方法和intValue的区别
  1. package days23;
  2. /*
  3. * 需求:弄清楚Integer的parseInt方法和intValue的区别
  4. * 分析:他们都可以把字符串转换成int型数据
  5. * 但parseInt是类Integer的静态方法,无需实例化,而intValue的则不是。且运用范围也不是一样,intValue的范围一般
  6. * 作用于已经被Integer实例String字符串
  7. */
  8. public class Test6 {
  9.         public static void main(String[] args) {
  10.         System.out.println(Integer.parseInt("1234"));       
  11.         Integer i = new Integer("1234");
  12.         System.out.println(i.intValue());

  13.         }
  14. }
复制代码

作者: RockLee    时间: 2015-6-25 00:05
parseInt是类Integer的静态方法,无需实例化,而intValue的则不是。且运用范围也不是一样,intValue的范围一般
* 作用于已经被Integer实例String字符串




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2