package example;public class Test { public static void main(String[] args) { int i=10; Integer q=new Integer(10); System.out.println(i==q);}}
true
输出是ture说明可以比较的
本文共 226 字,大约阅读时间需要 1 分钟。
package example;public class Test { public static void main(String[] args) { int i=10; Integer q=new Integer(10); System.out.println(i==q);}}
true
输出是ture说明可以比较的
转载于:https://www.cnblogs.com/xurui1995/p/5211538.html