C#.NET TcpListener 释放问题
如何把在一个线程中的TcpListener释放?比如,在某个线程中的程序是这样:tcpListener.Start();while(true){tcpClient=tcp...
如何把在一个线程中的TcpListener释放?
比如,在某个线程中的程序是这样:
tcpListener.Start();
while (true) {
tcpClient = tcpListener.AcceptTcpClient(); //线程释放的时候,能保证程序一定停在这一句话等待。那么问题是怎么同时把tcpListener也释放了?
......
}
不好意思,刚刚说错了,问题是程序停在那句话上面了。该怎么才能把这线程结束了。 展开
比如,在某个线程中的程序是这样:
tcpListener.Start();
while (true) {
tcpClient = tcpListener.AcceptTcpClient(); //线程释放的时候,能保证程序一定停在这一句话等待。那么问题是怎么同时把tcpListener也释放了?
......
}
不好意思,刚刚说错了,问题是程序停在那句话上面了。该怎么才能把这线程结束了。 展开
1个回答
展开全部
对于不能直接Dispose的资源,比如IO等,需要在停止线程前现行关闭。解决办法如下:
tcpListener.Start();
while (true) {
tcpClient = tcpListener.AcceptTcpClient(); //线程释放的时候,能保证程序一定停在这一句话等待。那么问题是怎么同时把tcpListener也释放了?
......
}
建议修改为
public class worker
{
public TcpListener tcpListener;
public void work()
{
this.tcpListener.Start();
while (true) {
tcpClient = tcpListener.AcceptTcpClient(); //线程释放的时候,能保证程序一定停在这一句话等待。那么问题是怎么同时把tcpListener也释放了?
......
}
}
}
启动线程的代码
worker wk = new worker();
Thread th = new Thread(new ThreadStart(wk.work));
th.Start()
停止线程的代码
wk.tcpListener.Stop();
th.Abort();
tcpListener.Start();
while (true) {
tcpClient = tcpListener.AcceptTcpClient(); //线程释放的时候,能保证程序一定停在这一句话等待。那么问题是怎么同时把tcpListener也释放了?
......
}
建议修改为
public class worker
{
public TcpListener tcpListener;
public void work()
{
this.tcpListener.Start();
while (true) {
tcpClient = tcpListener.AcceptTcpClient(); //线程释放的时候,能保证程序一定停在这一句话等待。那么问题是怎么同时把tcpListener也释放了?
......
}
}
}
启动线程的代码
worker wk = new worker();
Thread th = new Thread(new ThreadStart(wk.work));
th.Start()
停止线程的代码
wk.tcpListener.Stop();
th.Abort();
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询