我在Eclipse中写了这个Java接口程序,但是MyTriangle下面有一条红线tmp = new MyTriangle(); 当我运行程序时出现此错误:
无法访问 Question1 类型的封闭实例。必须使用 Question1 类型的封闭实例来限定分配(例如 xnew A(),其中 x 是 Question1 的实例)。
public static void main(String[] args)
{
MyTriangle tmp = new MyTriangle();
tmp.getSides();
System.out.println();
System.out.println("The area of the triangle is " + tmp.computeArea());
}
interface Triangle
{
public void triangle();
public void iniTriangle(int side1, int side2, int side3);
public void setSides(int side1, int side2, int side3);
public void getSides();
public String typeOfTriangle();
public double computeArea();
}
class MyTriangle implements Triangle
{
private int side1,side2,side3;
public void triangle()
{
this.side1 = 3;
this.side2 = 4;
this.side3 = 5;
}
}