Integer的值比较为什么推荐用equals而不是==
package com.csea;/** * @author Csea * @title * @date 2020/4/27 15:33 */public class IntegerEqual { public static void main(String[] args) { Integer a = 6; Integer b = 6; ...