class test1
{
void test1()
{
}
void test1(int a,int b)
{
System.out.println(a/b);
}
}
class testDemo
{
public static void main(String[] args)
{
test1 t1 = new test1(5,0);
}
}
testDemo.java:17: 错误: 无法将类 test1中的构造器 test1应用到给定类型;
test1 t1 = new test1(5,0);
^
需要: 没有参数
找到: int,int
原因: 实际参数列表和形式参数列表长度不同
1 个错误
|
|