ThreadPool中的线程数

发布于 2024-11-03 14:58:51 字数 92 浏览 2 评论 0原文

我有一个在.net 中使用线程池的Windows 服务。当我将线程池中的最大线程数配置为 1 时,我仍然可以通过使用该服务的任务管理器看到多个线程。这些线程数有什么区别?

I have a windows service which uses thread-pool in .net. When I configure maximum threads to be 1 in the thread pool I can still see more than one threads by using task manager for that service. What is the difference between these thread count?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里南柯 2024-11-10 14:58:51

应用程序使用的线程数不受线程池的控制。还有许多其他东西会在您的应用程序中创建线程。除了应用程序直接使用的线程之外,线程池还维护一组线程。

另外,将线程池线程数限制为 1 也不是一个好主意。你可能会导致各种各样的问题,而且它不会做你认为它正在做的事情。

The number of threads in use by your application is not under the control of the thread pool. There are numerous other things that will create threads in your application. The thread pool maintains a group of threads in addition to the ones used by your application directly.

Also, limiting thread pool threads to 1 is not a good idea. You may cause all sorts of problems plus it doesn't do what you think it is doing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文