嘿家伙我正在按照如何构建游戏的教程,但我似乎无法使用此方法。我在此行错误中获得多个标记?我也得到了公共无效油漆(图形g)的相同问题?
public void update(Graphics g) {
if (image == null) {
image = createImage(this.getWidth(), this.getHeight());
second = image.getGraphics();
}
second.setColor(getBackground());
second.fillRect(0, 0, getWidth(), getHeight());
second.setColor(getForeground());
paint(second);
g.drawImage(image, 0, 0, this);
}