我在方法A中创建了一个线程 threadHandle = new MyThread(); 并启动,threadHandle.start();我要在B法方法中挂起线程 threadHandle ,threadHandle.supend();
 
然后在 C 方法中唤醒线程 threadHandle , threadHandle.resume();但是好像不行啊,执行 threadHandle.resume();语句的时候就死住了
请大家指点一下,我该怎么挂起和唤醒线程,着急,在线等待。。