我在第80行遇到编译器错误:

错误:/Users .../AsciiDisplay.java:80:找不到符号

符号:方法draw(AsciiDisplay)

位置:类java.lang.Object

public class AsciiDisplay {

  private char [][] grid;
  private ArrayList shapes;

  public AsciiDisplay() {
    grid = new char [30][15];
    shapes = new ArrayList();
  }

  public void updateGrid() {

    for(int i = 0; i < shapes.size(); i++) {
      shapes.get(i).draw(this); //Line 80: The error is in this line of code.
    }
  }
}

public class Shape {

  protected String id;
  protected Coordinate location;

  public Shape(String id, Coordinate location) {
    this.id = id;
    this.location = location;
  }

  public void draw(AsciiDisplay dis) {
    dis.putCharAt(location.getX(),location.getY(),'?');
  }
}

最佳答案

您需要的是形状的ArrayList,因此您需要以这种方式声明ArrayList

ArrayList<Shape> shapes;

现在,编译器将知道它仅包含Shapes,因此它将允许您在list元素上的shapes上调用方法。

您可以查看Generics Tutorial了解更多信息。

关于java - 找不到符号: method draw(AsciiDisplay),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13036304/

10-11 15:53