java中Integer "=="运算符注意事项
下文笔者讲述java中 “==”运算符比较两个对象的注意事项,如下所示:
注意事项: 当数字小于128时,此时两个对象返回true 反之则返回false例:
package com.java265.other; public class Test11 { /** * java265.com 示例演示 */ public static void main(String[] args) { /* java中Integer大小比较的方法分享 */ Integer a = 10; Integer b =10; Integer c =1000; Integer d =1000; System.out.print("a==b:"); System.out.println(a == b); System.out.print("c==d:"); System.out.println(c == d); } } //运行以上代码,将输出以下信息 a==b:true c==d:false
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。