Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 TEventLog 组件来调试我的应用程序,记录所有步骤以完全验证它是否正常工作。
TEventLog 线程安全吗,我使用相同的 TEventLog 实例从多个线程写入。是不是错了,我应该在写作时使用关键部分吗?
我不认为它是线程安全的。我没有看到为此做任何事情。此外,它是一个 TComponent,并且大多数 tcomponents 是供设计时使用的,而不是线程安全的。
所以是的,可能你必须自己序列化。