0

我有一个家庭作业,要求我们为一个小图形程序编写一个辅助方法。我遇到的问题是它一直说我有错误。

找不到符号 - 方法 drawPolygon(gp, int, int)。

我错过了什么?

PS。我知道 GraphicsPanel 代码不在这里,但更想知道为什么我会收到“找不到符号”错误。当我写drawPolygon(gp, 50, 4) 时,它会编译没有任何错误,但它也不会在面板中绘制任何东西。

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class G5 {
    public static void drawPolygon(GraphicsPanel gp, int sideCount, int sideLength) {
        for (int i = 0; i < 4; i++) {
            gp.draw(sideLength);
            gp.turn(360 / sideCount);
        }
    }

    public static void main(String[] args) {
        GraphicsPanel gp = new GraphicsPanel();
        gp.setBackgroundColor(Color.BLACK);
        gp.delay(1000);
        int x = gp.getWidth() / 2;
        int y = gp.getHeight() / 2;
        gp.setLocation(x, y);

        gp.setColor(Color.RED);
        gp.drawPolygon(gp, 50, 4);

        gp.clear();
    }
}
4

2 回答 2

0

该方法是 G5 类的静态方法。它不是 GraphicsPanel 的实例方法。所以你必须使用它来调用它

G5.drawPolygon(gp, 50, 4);

代替

gp.drawPolygon(gp, 50, 4);

为了能够像您正在做的那样调用它,该方法必须在 GraphicsPanel 类(或其任何超类)中定义,不带 static 关键字。

阅读Java 教程的这一部分以了解实例方法和静态方法之间的区别。

于 2012-10-28T11:16:45.480 回答
0
 gp.drawPolygon(gp, 50, 4);

您正在寻找GraphicsPanel实例中的方法,而不是在您的类中。因为它是一个静态方法,所以使用

G5.drawPolygon(gp, 50, 4);

反而

于 2012-10-28T11:17:51.970 回答