线程优先级

发布于 2024-11-04 05:04:08 字数 140 浏览 1 评论 0原文

我得到了一个 System.Threading.Timer,我将其更改为较低优先级 (Thread.CurrentThread.Priority = XXXX)。

在退出回调方法之前我是否必须重置优先级,或者 .Net 在线程返回时是否会重置优先级?

I got a System.Threading.Timer which I change to lower priority (Thread.CurrentThread.Priority = XXXX).

Do I have to reset the priority before I exit the callback method, or will .Net reset the priority when it get's the thread back?

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

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

发布评论

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

评论(1

System.Threading.Timer 使用ThreadPool,不建议更改这些线程的优先级:为什么*不*更改 ThreadPool(或任务)线程的优先级? 而且它看起来不像线程池将优先级更改回来。所以看起来你一开始就不应该这样做,但如果你这样做了,你应该自己把它改回来。

System.Threading.Timer utilizes the ThreadPool and changing priorities for those is not recommended: Why *not* change the priority of a ThreadPool (or Task) thread? and it doesn't look like the thread pool changes the priority back. So it seems like you shouldn't do it in the first place but if you do it then you should change it back yourself.

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