1

我有一个线程,我想知道等待方法何时运行。并且当线程运行时

这是我的代码:

    runnableClass rc = new runnableClass();
    Object PauseTHR = new Object();
    boolean pause = false;
    public class runnableClass implements Runnable {
            @Override
            public void run() {
                while(true) {
                // here is my code,after my code i want to wait thread
                // so i call onpause();
                    onpause();  
                    synchronized (PauseTHR) {
                        while(pause) {
                            Log.i("while loop", "it goes over me");
                            try {
                                PauseTHR.wait();
                            } catch (InterruptedException e) {
                                e.printStackTrace();
                            }
                        }
                    }
                }
            }

            public void onpause() {
                synchronized (PauseTHR) {
                    Log.i("synchronized", "it goes over me");
                    pause = true;
                }
            }

            public void onresume() {
                synchronized (PauseTHR) {
                    pause = false;
                    PauseTHR.notifyAll();
                }
            }
        }

我将我的布尔(暂停)变量设置为全局但是当我检查时

if(pause == true) 
    rc.onresume();

在我的 Runnable 类中,它似乎不起作用并且我的条件有效我如何检查我的线程何时等待以及我的线程何时运行?

4

2 回答 2

3

使用 Thread.getState() 方法

http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Thread.State.html

线程可以处于以下状态之一:

新的,可运行的,阻塞的,等待的,TIMED_WAITING的,终止的

于 2013-10-04T21:03:20.327 回答
3

通过以下代码检查您的线程是否存在:

thread1.isAlive()

它返回一个布尔值。如果接收器已经启动并且仍在运行代码(尚未终止),则返回 true。如果接收器尚未启动,或者它已经启动并运行到完成并死亡,则返回 false。

于 2013-10-04T20:59:15.090 回答