提问:这个自动装箱和拆箱操作为啥报错了?

88 阅读1分钟

public class IntergerTest { public static void main(String[] args) { int i = 10; Integer i2 = i; } }