关于java 可变参数的问题,The method max(int[]) is ambiguous for the type test 20
publicclasstest{publicstaticintmax(int...a){return0;}publicstaticintmax(long...a){ret...
public class test {
public static int max(int... a)
{
return 0;
}
public static int max(long... a)
{
return 0;
}
public static void main(String[] s)
{
test.max(1,2);
}
}
代码里 max(int... a) 与max(long... a)重载,但调用的时候报
The method max(int[]) is ambiguous for the type test
各位有没有遇到过这种问题 展开
public static int max(int... a)
{
return 0;
}
public static int max(long... a)
{
return 0;
}
public static void main(String[] s)
{
test.max(1,2);
}
}
代码里 max(int... a) 与max(long... a)重载,但调用的时候报
The method max(int[]) is ambiguous for the type test
各位有没有遇到过这种问题 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询