美团面试遇到的一个问题,int,integer是否可以重载?int、long是否可以重载?当传入参数值为1,是执行int的方法还是long的方法? //int integer long是否有重载效果?重载的是哪一个? public class Test1 { public Test1(int a) { System.out.println("执行的是int方法"); } public Test1(Integer a) { System.out.println("执行的是Integer方法"); } public Test1(long...