gpt4 book ai didi

delphi - TThread.resume 在 Delphi-2010 中已弃用,应该在什么地方使用?

转载 作者:行者123 更新时间:2023-12-03 14:32:53 25 4
gpt4 key购买 nike

在我的多线程应用程序中

我使用TThread.suspendTThread.resume

自从将我的应用程序移至 Delphi 2010 后,我收到以下警告消息

[DCC 警告] xxx.pas(277):W1000 符号“Resume”已弃用

如果 Resume 已被弃用,应该使用什么?

编辑1:

我使用恢复命令启动线程 - 因为它是在“CreateSuspished”设置为 True 的情况下创建的,并在终止线程之前挂起

编辑2:

Here is a link the delphi 2010 manual

最佳答案

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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com