日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

java 线程 释放_java线程似乎不会被释放

發布時間:2025/3/12 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java 线程 释放_java线程似乎不会被释放 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

我沒有回答為什么第四個連接掛起,除了說這里是一個有效的代碼版本…

public class Test {

public static void main(String[] args) throws Exception {

ServerSocket listen = new ServerSocket(9999);

ExecutorService threadPool = Executors.newFixedThreadPool(3);

while(true) {

Socket client = null;

try {

client = listen.accept();

} catch(IOException e) {

System.err.println(e);

}

System.out.println("New connection from client: " +

client.getInetAddress().getHostAddress() + "\n"

);

threadPool.execute(new ConnectionHandler(client));

}

}

}

class ConnectionHandler implements Runnable {

private Socket client;

public ConnectionHandler(Socket client) {

this.client = client;

}

@Override

public void run() {

try(BufferedReader in = new BufferedReader(new InputStreamReader(client.getInputStream()));

BufferedWriter out = new BufferedWriter(new OutputStreamWriter(client.getOutputStream()))) {

String input;

while(true) {

input = in.readLine();

if(input == null)

break;

out.write(input);

out.newLine();

out.flush();

}

} catch(IOException e) {

System.err.println("Error from socket IO.");

}

try {

client.close();

} catch(IOException e) {

System.err.println("Error when closing socket.");

}

System.out.println("Client " + client.getInetAddress().getHostAddress() +

" closed connection.\n");

}

}

我用telnet連接,回復了一些字符并斷開連接.我這樣做了5次.

New connection from client: 0:0:0:0:0:0:0:1

Client 0:0:0:0:0:0:0:1 closed connection.

New connection from client: 0:0:0:0:0:0:0:1

Client 0:0:0:0:0:0:0:1 closed connection.

New connection from client: 0:0:0:0:0:0:0:1

Client 0:0:0:0:0:0:0:1 closed connection.

New connection from client: 0:0:0:0:0:0:0:1

Client 0:0:0:0:0:0:0:1 closed connection.

New connection from client: 0:0:0:0:0:0:0:1

Client 0:0:0:0:0:0:0:1 closed connection.

唯一的區別是問題中的代碼有…

input = readLine();

在哪里我需要改變它

input = in.readLine();

有效.我想知道在未發布到問題的代碼中是否包含靜態變量或其他類型的惡作劇.

總結

以上是生活随笔為你收集整理的java 线程 释放_java线程似乎不会被释放的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。