Thread.stop()
Thread.suspend()
Thread.resume()
이러한 호출은 본질적으로 데이터 손상 및 교착상태로 이어지기 쉬우므로 사용하지 않는 것이 좋습니다. stop 대신 협조적 취소를, suspend 및 resume을 직접 호출하는 대신 중단을 사용하는 것이 더 낫습니다.
stop
suspend
resume