程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> java-Syntax error on token }, delete this token

java-Syntax error on token }, delete this token

編輯:編程綜合問答
Syntax error on token "}", delete this token

省去中間的算法部分,前後結構如下
public class MainActivity extends ActionBarActivity
{

private ImageButton Imagebutton=null;
private TextView textView=null;
private Handler handler=new Handler()
{
    public void handleMessage(Message msg)
    {
        String result=msg.obj.toString();
        textView.setText(result);
    }
};

@Override
protected void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Imagebutton =(ImageButton)findViewById(R.id.button1);
    textView = (TextView)findViewById(R.id.textView2);
    Imagebutton.setOnClickListener(new OnClickListener()
    {
        @Override
        public void onClick(View v)
        {
            new Thread()
            {
                public void run()
                {
                    try{
                            //算法全部省略了,不然肯定是太長不看 = =
                            }
                    catch(Exception e)
                    {
                        e.printStackTrace();
                    }
                }
            }.start();
        }
    });
}

}

就是這樣,檢查了幾次,都沒發現錯誤,可是eclipse始終提示那個錯誤,請大神解答一下,謝謝!

最佳回答:


已經解決了~是一些函數寫的地方不讀

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved