suspend(); 라는 함수 말인데요.


Suspends this Thread. This is a no-op if the receiver is suspended. If the receiver isAlive() however, suspended it until resume() is sent to it. Suspend requests are not queued, which means that N requests are equivalent to just one - only one resume request is needed in this case.


미천한 실력으로나마 해석해보면 일시정지 기능이며 resume() 메소드를 통해서만 다시 시작 할 수 있다고 되어있는데.


이게 전혀 먹히질 안네요 일시정지가 되질안아요 스레드는 계속 돕니다 어떻게 쓰는걸까요.

할룽!