想問大家
這個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初學者