意外的令牌:void(处理)

时间:2015-11-12 18:57:15

标签: java processing

我一直得到这个

  

意外令牌:无效

在我的设置中,如下所示。

public static void main (String[] args)
{

    MenuBar me = new MenuBar();
    me.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    me.setVisible(true);

    void setup()
    {
        size(640, 640);
        H.init(this).background(#202020);
        smooth();

        colors = new HColorPool(#9400D3, #FFE4E1, #FFE4B5, #FFDAB9, #A9A9A9, #FA8072, #D2B48C, #C0C0C0);

提前非常感谢任何帮助:)

1 个答案:

答案 0 :(得分:0)

您错过了右括号:

public static void main (String[] args)
{
  MenuBar me = new MenuBar();
  me.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  me.setVisible(true);
} //here

void setup()
{
  size(640, 640);
  H.init(this).background(#202020);
  smooth();
  colors = new HColorPool(#9400D3, #FFE4E1, #FFE4B5, #FFDAB9, #A9A9A9, #FA8072, #D2B48C, #C0C0C0);
} //and here