如何在Java中掛起線程時掛起? 我不能使用中斷(),因爲我無法檢查掛起的線程中的中斷標誌。 另外stop()已被棄用,因爲它不安全。如何在java中掛起線程時掛起?
在此先感謝。
更新: 線程掛起Socket.connect():
Method m = device.getClass().getMethod("createInsecureRfcommSocket",
new Class[] { int.class });
final BluetoothSocket socket = (BluetoothSocket) m.invoke(device, port);
socket.connect();
定義你的意思是'線程被絞死' – Blundell
@Blundell我已經更新了這個問題 – Taras
@Division_Bell如果你在android上,[javadoc](http://developer.android.com/reference/android/bluetooth /BluetoothSocket.html#connect%28%29)指出:*「close()可用於中止來自其他線程的此調用。」* – assylias