此标记后预期VariableDeclaratorId

时间:2013-09-25 15:02:44

标签: java eclipse

我正在尝试将图像添加到我的GUI中,但我有一个“在此令牌之后预期的VariableDeclaratorId”消息。我已经查找了如何解决它,但我无法弄清楚如何解决我的问题。

以下是代码:

frame.setIconImage= (
        new ImageIcon(getClass().getResource("tictactoe.gif")).getImage());

我在setIconImage上收到错误。

我在日食时这样做。

1 个答案:

答案 0 :(得分:5)

您不需要分配=运算符。这用于赋值变量值而不是方法。

尝试

frame.setIconImage(
        new ImageIcon(getClass().getResource("tictactoe.gif")).getImage());