0
  class MyRunnable implements Runnable{
        public StringBuffer line2;
        public MyRunnable(StringBuffer _line){
             this.line2 = _line;
             Log.w("LINE", this.line2.toString());   // Return what it should
        }

        public void run(){
             console.append(this.line2.toString());   //Nothing happens here
        }
  }

这是我的代码。我有一个问题,当从run()方法访问 line2 时,它的长度为 0。

编辑:这是我的电话

        new Thread(new Runnable() {             
            @Override
            public void run() {
                StringBuffer line = new StringBuffer();
                while(true){
                    char a = UART.serialRead(UART.fd);

                    if(a != 0){                         
                        if (a == '\r' || a == '\n'){
                            MyRunnable obj = new MyRunnable(line);
                            handler.post(obj);
                            line.delete(0, line.length());
                            obj = null;
                        }else
                            line.append(a); 
                    }                   

                    try {
                        Thread.sleep(50);
                    } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                }

            }
        }).start();

知道我哪里错了吗?

4

2 回答 2

0

请验证您是否正在使用单参数构造函数实例化 MyRunnable 类。

于 2013-09-19T05:46:58.063 回答
0

尝试发布 make MyRunnable obj = new MyRunnable(line.toString); end 在 MyRunnable 中获取一个字符串。我不确定 line 是否作为副本或对象传递,但在您的情况下不是引用。如果它的引用比你在 MyRunnable 中使用之前清除的行。

于 2013-09-19T06:50:06.283 回答