想问大家
这个code哪里错了
public class a1 {
public static void main(String args[])
{
double a;
area C1 =new area();
a=C1.area1(5, 6);
}
class area{
public double area1(double a, double b){
return a+b;
}
}
}
这个area C1 =new area(); 这里 Eclipse一直出现错误
这不就是呼叫area建构子
为什一直有错
No enclosing instance of type a1 is accessible. Must qualify the allocation with an enclosing instance of type a1 (e.g. x.new A() where x is an instance of a1).
这个是什么意思
可以请高手帮忙解答吗
小弟是java初学者