作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的多线程应用程序中
我使用TThread.suspend和TThread.resume
自从将我的应用程序移至 Delphi 2010 后,我收到以下警告消息
[DCC 警告] xxx.pas(277):W1000 符号“Resume”已弃用
如果 Resume 已被弃用,应该使用什么?
编辑1:
我使用恢复命令启动线程 - 因为它是在“CreateSuspished”设置为 True 的情况下创建的,并在终止线程之前挂起。
编辑2:
最佳答案
Charles,如果你读过TThread类的代码,你能找到答案吗?
TThread = class
private type
..
..
..
public
constructor Create(CreateSuspended: Boolean);
destructor Destroy; override;
procedure AfterConstruction; override;
// This function is not intended to be used for thread synchronization.
procedure Resume; deprecated;
// Use Start after creating a suspended thread.
procedure Start;
// This function is not intended to be used for thread synchronization.
procedure Suspend; deprecated;
procedure Terminate;
查看此链接 RAD Studio 2010: Community pulse: The day after. (Part 2)
编辑:
如果需要同步线程,可以使用基于TMutex、TEvent和临界区的方案。
再见。
关于delphi - TThread.resume 在 Delphi-2010 中已弃用,应该在什么地方使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1418333/
我是一名优秀的程序员,十分优秀!