线程概念
线程不应启动调用启动方法的事件。这可能吗?在 c# 中
A thread should not start event the start method is called.. is it possible? in c#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
线程不应启动调用启动方法的事件。这可能吗?在 c# 中
A thread should not start event the start method is called.. is it possible? in c#
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
如这段代码所示,线程会自动创建为处于挂起状态,并且在您调用 start 之前不会启动。
(这是在 .NET 3.5 上用 C# 创建的,2.0 的线程是否有所不同?)
As this code demonstrates, the thread automatically is created in a suspended state and will not start until you call start.
(This was created with C# on .NET 3.5, was threading different for 2.0?)