面试题:Integer和int的区别?在什么时候用Integer和什么时候用int

时间:2022-11-25 00:47:34

/*

 * (1) int是java提供的8种原始数据类型之一。Java为每个原始类型提供了封装类,Integer是java为int提供的封装类。

* (2)int的默认值为0, 而Integer的默认值为null

 *     即Integer可以区分出未赋值和值为0的区别,int则无法表达出未赋值的情况,例如,要想表达出没有参加考试和考试成绩为0的区别

 *    ,则只能使用Integer。

    场景一:在JSP开发中,Integer的默认为null,所以用el表达式在文本框中显示时,值为空白字符串,而int默认的默认值为0,

        所以用el表达式在文本框中显示时,结果为0,所以,int不适合作为web层的表单数据的类型。

 *    场景二:在Hibernate中,如果将OID定义为Integer类型,那么Hibernate就可以根据其值是否为null而判断一个对象是否是临时的

 *       ,如果将OID定义为了int类型,还需要在hbm映射文件中设置其unsaved-value属性为0。

 * (3)Integer提供了多个与整数相关的操作方法,例如,将一个字符串转换成整数,Integer中还定义了表示整数的最大值和最小值的常量。

*/

    1. package java基础题目;
    2. /**
    3. * 问题:要想表达出没有参加考试和考试成绩为0的区别?我们应该用Integer表示还是用int表示?
    4. */
    5. public class A2015年6月4日_Integer和int {
    6. private static int score;
    7. private static Integer score2;
    8. //  private static boolean ss;
    9. public static void main(String[] args) {
    10. System.out.println("int类型的默认值score2:" + score);// 0
    11. System.out.println("Integer类型的默认值score:" + score2);// null
    12. /*
    13. * if(score==null){//报错因为score是int类型的不能和null比较
    14. *
    15. * }
    16. */
    17. //      if(ss==true)
    18. //      score2 = 0;
    19. if (score2 == null) {
    20. System.out.println("没有参加考试!!!");
    21. } else if (score2 == 0) {
    22. System.out.println("考试成绩为0分!!!");
    23. } else {
    24. System.out.println("考试成绩为" + score2);
    25. }
    26. integer();
    27. }
    28. public static void integer() {
    29. String string = "12345";
    30. Integer i = Integer.parseInt(string);// 把字符串解析为Integer类型
    31. Integer max = Integer.MAX_VALUE;
    32. Integer min = Integer.MIN_VALUE;
    33. System.out.println("Integer.parseInt(string)=" + i);
    34. System.out.println("integer的最大值:"+max+",最小值:"+min);
    35. }
    36. }