基本类型优先于装箱基本类型

 基本类型与包装类型的主要区别在于以下三个方面:

1、基本类型只有值,而包装类型则具有与它们的值不同的同一性(identity)。这个同一性是指,两个引用是否指向同一个对象,如果指向同一个对象,则说明具有同一性。(与此类似的还有等同性。)

2、基本类型只有功能完备的值,而包装类型除了其对应的基本类型所有的功能之外,还有一个非功能值:null。

3、基本类型通常比包装类型更节省时间与空间。

 

 1 package com;2 3 import java.util.Comparator;4 5 /**6  * Created by huyanxia on 2017/11/27.7  */8 public class TestInteger {9     public static Integer i;
10 
11     public static void main(String[] args) {
12         Integer a = i;
13         //int j = i;
14         /* 1.因为Integer转换为int时,会首先进行自动拆箱,但是若为null,就会出现空指针异常*/
15         //输出null,Integer默认为null
16         System.out.println("输出" + a);
17         //java.lang.NullPointerException
18         System.out.println("输出" + i);
19         /* 2.因为执行first < second 时,会自动拆箱,再执行first == second时会执行同一性(引用是否指向同一个对象,若是为true)
20         比较,即first和second引用表示同一个int 值的不同的Interger实例,那么就会返回false,比较器就会错误的返回1*/
21         //大小1;
22         System.out.println("大小" + order.compare(new Integer(42), new Integer(42)));
23         //大小0
24         System.out.println("大小" + order.compare(42, 42));
25 
26         /* 3.Integer的常量池是由-128至127组成。当我们给一个Integer赋的值在这个范围之类时就直接会从缓存返回一个相同的引用,
27          所以m1 == n1,m3 == n3会输出true。而超过这个范围时,就会重新new一个对象。因此,m == n,m4 == n4就会输出一个false。*/
28         // false
29         Integer m = 980;
30         Integer n = 980;
31         System.out.println("结果:" + (m == n));
32         //true
33         Integer m1 = 127;
34         Integer n1 = 127;
35         System.out.println("结果:" + (m1 == n1));
36         //false
37         Integer m2 = 128;
38         Integer n2 = 128;
39         System.out.println("结果:" + (m2 == n2));
40         //true
41         Integer m3 = -128;
42         Integer n3 = -128;
43         System.out.println("结果:" + (m3 == n3));
44         //false
45         Integer m4 = -129;
46         Integer n4 = -129;
47         System.out.println("结果:" + (m4 == n4));
48         /* 4.基本类型只有值,而包装类型则具有与它们的值不同的同一性(identity)。这个同一性是指,两个引用是否指向同一个对象,
49         如果指向同一个对象,则说明具有同一性。(与此类似的还有等同性。)*/
50         //false
51         Integer m5 = new Integer(127);
52         Integer n5 = new Integer(127);
53         System.out.println("结果:" + (m5 == n5));
54 
55         /* 5.基本类型通常比包装类型更节省时间与空间。因为,在声明sum变量的时候,一不小心声明为Long,
56           而不是long。这样,在这个循环当中就会不断地装箱和拆箱,其性能也会明显的下降。但是,将Long改成long时间消耗会缩短很多*/
57         //4999950000,时间:14ms
58         long startTime = System.currentTimeMillis();
59         Long sum = 0L;
60         for(long i = 0;i < 100000; i++){
61             sum +=i;
62         }
63         System.out.println(sum + ",时间:" + (System.currentTimeMillis() - startTime) + "ms");
64 
65         //4999950000,时间:3ms
66         long startTime1 = System.currentTimeMillis();
67         long sum1 = 0;
68         for(long i = 0;i < 100000;i++){
69             sum1 +=i;
70         }
71         System.out.println(sum1 + ",时间:" + (System.currentTimeMillis() - startTime1) + "ms");
72         
73        /* 因为int的最大值为 2147483647,而累加超过 2147483647,就会变成负数,所以int的累加结果小*/
74         //704982704,时间:7ms
75         long startTime2 = System.currentTimeMillis();
76         Integer sum2 = 0;
77         for(int i = 0;i < 100000;i++){
78             sum2 +=i;
79         }
80         System.out.println(sum2 + ",时间:" + (System.currentTimeMillis() - startTime2) + "ms");
81 
82         //704982704,时间:2ms
83         long startTime3 = System.currentTimeMillis();
84         int sum3 = 0;
85         for(int i = 0;i < 100000;i++){
86             sum3 +=i;
87         }
88         System.out.println(sum3 + ",时间:" + (System.currentTimeMillis() - startTime3) + "ms");
89     }
90     static Comparator<Integer> order = new Comparator<Integer>() {
91         @Override
92         public int compare(Integer first, Integer second) {
93             return first < second ? -1 : (first == second ? 0 : 1);
94         }
95     };
96 }

 

适合包装类型的三个情况:

1、作为集合中的元素、键和值。
2、在参数化类型中。比如:你不能这样写——ArryList<int>,你只能写ArrayList<Integer>.
3、在进行反射方法的调用时。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/439607.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【CodeForces - 827A】String Reconstruction(并查集合并区间,思维)

题干&#xff1a; Ivan had string s consisting of small English letters. However, his friend Julia decided to make fun of him and hid the string s. Ivan preferred making a new string to finding the old one. Ivan knows some information about the string s. …

详解自动驾驶仿真框架OpenCDA: An Open Cooperative Driving Automation Framework Integrated with Co-Simulation

本文介绍一款同时支持协同驾驶开发与测试、自动驾驶全栈开发 和 CARLA-SUMO联合仿真的开源框架 OpenCDA&#xff0c;论文已收录于 ITSC 2021。主要feature有&#xff1a; 支持CARLA-SUMO联合仿真&#xff0c;CARLA端主管环境渲染、传感器模拟、车辆动力&#xff0c;Sumo端主管…

JavaMonitor 监视器

为什么wait(), notify()和notifyAll()必须在同步方法或者同步块中被调用&#xff1f; 当一个线程需要调用对象的wait()方法的时候&#xff0c;这个线程必须拥有该对象的锁&#xff0c;接着它就会释放这个对象锁并进入等待状态直到其他线程调用这个对象上的notify()方法。同样的…

KITTI自动驾驶数据集可视化教程

本文介绍关于自动驾驶数据集KITTI的基本操作&#xff0c;包括Camera和LiDAR可视化教程&#xff0c;源码已上传&#xff1a;https://download.csdn.net/download/cg129054036/20907604 1. 数据准备 将 KITTI 数据 (calib, image_2, label_2, velodyne) 添加到 dataset/KITTI/ob…

【CodeForces - 746E】Numbers Exchange(贪心构造)

题干&#xff1a; Eugeny has n cards, each of them has exactly one integer written on it. Eugeny wants to exchange some cards with Nikolay so that the number of even integers on his cards would equal the number of odd integers, and that all these numbers w…

java synchronized 关键字(1)对象监视器为Object

在java多线程中 synchronized 是非常重要的&#xff0c;也是经常用到的 对于synchronized关键字要注意两点 synchronized对象监视器为Object的时候 synchronized对象监视器为Class的时候 对象监视器为Object 也就是synchronized锁定的是对象 例如下面代码 public class A …

重读经典《Quaternion kinematics for the error-state Kalman filter》

本文将介绍一篇关于 四元数运动学的误差卡尔曼滤波 经典论文。本文结构如下&#xff1a; 第1章四元数定义和性质介绍&#xff0c;包括&#xff1a;加法、减法、乘法&#xff08;矩阵表示&#xff09;、模、幂数、指数运算等。第2章旋转群定义和性质介绍&#xff0c;包括&#…

【CodeForces - 789C】Functions again(最大子段和变形,dp,思维)

题干&#xff1a; Something happened in Uzhlyandia again... There are riots on the streets... Famous Uzhlyandian superheroes Shean the Sheep and Stas the Giraffe were called in order to save the situation. Upon the arriving, they found that citizens are wo…

一步步编写操作系统 55 CPL和DPL入门2

接上节。 图中第132行的jmp指令&#xff0c;段选择子为SELECTOR_CODE&#xff0c;其RPL的值为RPL0&#xff0c;RPL0定义在include/boot.inc中&#xff0c;其值为0。选择子的索引部分值为1&#xff0c;表示对应GDT中第1个段描述符&#xff0c;该描述符的DPL为0&#xff0c;&…

详解停车位检测算法 Vision-Based Parking-Slot Detection: A DCNN-Based Approach and a Large-Scale Benchmark

本文介绍一篇基于深度学习的停车位检测论文&#xff1a;DeepPS&#xff0c;作者同时公开了数据集ps2.0&#xff0c;工作很扎实&#xff0c;对于入门停车位检测很有帮助&#xff0c;论文发表在 IEEE T-IP 2018。 项目链接为&#xff1a;https://cslinzhang.github.io/deepps/ 0…

【CodeForces - 789D】Weird journey(思维,图的性质,tricks,有坑)

题干&#xff1a; Little boy Igor wants to become a traveller. At first, he decided to visit all the cities of his motherland — Uzhlyandia. It is widely known that Uzhlyandia has n cities connected with m bidirectional roads. Also, there are no two roads…

Monitor(管程)是什么意思?Java中Monitor(管程)的介绍

本篇文章给大家带来的内容是关于Monitor&#xff08;管程&#xff09;是什么意思&#xff1f;Java中Monitor&#xff08;管程&#xff09;的介绍&#xff0c;有一定的参考价值&#xff0c;有需要的朋友可以参考一下&#xff0c;希望对你有所帮助。 monitor的概念 管程&#x…

详解经典GPS辅助惯性导航论文 A GPS-aided Inertial Navigation System in Direct Configuration

本文介绍一篇 IMU 和 GPS 融合的惯性导航论文&#xff0c;重点是理解本文提出的&#xff1a;Dynamical constraints update、Roll and pitch updates 和 Position and heading updates。 论文链接为&#xff1a;https://www.sciencedirect.com/science/article/pii/S166564231…

【POJ - 2151】Check the difficulty of problems(概率dp)

​​​​题干&#xff1a; Organizing a programming contest is not an easy job. To avoid making the problems too difficult, the organizer usually expect the contest result satisfy the following two terms: 1. All of the teams solve at least one problem. 2.…

jsp之九大内置对象与四大域对象

一,什么是内置对象? 在jsp开发中会频繁使用到一些对象,如ServletContext HttpSession PageContext等.如果每次我们在jsp页面中需要使用这些对象都要自己亲自动手创建就会特别的繁琐.SUN公司因此在设计jsp时,在jsp页面加载完毕之后自动帮开发者创建好了这些对象,开发者只需要使…

详解停车位检测论文:Attentional Graph Neural Network for Parking-slot Detection

本文介绍一篇注意力图神经网络用于停车位检测论文&#xff0c;论文已收录于 RA-L2021。在之前的基于卷积神经网络的停车位检测方法中&#xff0c;很少考虑停车位标记点之间的关联信息&#xff0c;从而导致需要复杂的后处理。在本文中&#xff0c;作者将环视图中的标记点看作图结…

【Codeforces - 769D】k-Interesting Pairs Of Integers(暴力,统计,思维,数学,异或)

题干&#xff1a; Vasya has the sequence consisting of n integers. Vasya consider the pair of integers x and y k-interesting, if their binary representation differs from each other exactly in k bits. For example, if k  2, the pair of integers x  5 and …

JSP的三六九四七(三大指令、六大标签、九大内置对象、四大作用域、七个动作指令)

JSP的基本构成&#xff1a;HTML文件Java片断JSP标签 三大指令&#xff1a;page指令、include指令、taglib指令。 page指令: 1.language属性&#xff1a;设置当前页面中编写JSP脚本使用的语言&#xff0c;默认值为java。 <%page language"java"%> 2.content…

详解3D物体检测模型 SPG: Unsupervised Domain Adaptation for 3D Object Detection via Semantic Point Generation

本文对基于激光雷达的无监督域自适应3D物体检测进行了研究&#xff0c;论文已收录于 ICCV2021。 在Waymo Domain Adaptation dataset上&#xff0c;作者发现点云质量的下降是3D物件检测器性能下降的主要原因。因此论文提出了Semantic Point Generation (SPG)方法&#xff0c;首…

【CodeForces - 722D】Generating Sets(二分,贪心)

题干&#xff1a; You are given a set Y of n distinct positive integers y1, y2, ..., yn. Set X of n distinct positive integers x1, x2, ..., xn is said to generate set Y if one can transform X to Y by applying some number of the following two operati…