先上代码:
- <p style="line-height: 30px; text-indent: 2em;"></p>public class DemoInteger {
- public static void main(String[] args) {
- int i1 = 228;
- int i2 = 228;
- System.out.println(i1==i2);
- }
- }
复制代码- public class DemoInteger {
- public static void main(String[] args) {
- Integer i1 = 228;
- Integer i2 = 228;
- System.out.println(i1==i2);
- }
- }
复制代码
如果是int,返回的是true.
如果是Integer,则返回false.
求教,为什么
|
|