我们应该在线程类中哪里编写原始线程函数
我正在浏览 CWinThread 教程,发现从 CWinThread 派生的类可以在 AfxBeginThread 中使用。请告诉我应该在哪里(在哪个函数下)编写线程逻辑,或者哪个是 CWinThread 类中 UINT MyControllingFunction( LPVOID pParam ); 的替代方案。
问候,
约翰。
I was going through the CWinThread tutorial and found that the classes derived from CWinThread can be used inside AfxBeginThread. Please tell me where(under which function) should i write the logic for the threading or which is the alternative for UINT MyControllingFunction( LPVOID pParam ); inside the CWinThread class.
Regards,
John.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常用类成员函数编写线程函数逻辑
你好,如果我理解你的问题,
Hi usualy thread function logic written in class member function
if i understand your question