public class Test {
public static void main(String[] args) {
Integer a = 100;
Integer b = 100;
Integer c = 200;
Integer d = 200;
System.out.print(a == b);
System.out.print(c == d);
System.out.print(a.equals(b));
}}
问题: 程序的输出结果是什么?
点点赞赏,手留余香
给TA打赏




评论0