帮助在 MFC 中使用 CWinThread
在我的项目中,我有经理课程和计算课程。 calc 类派生自 CWinThread。和管理器有一个指向 calc 类的指针。我如何使用 AfxBeginThread 以及在哪里? 请注意,我是 MFC 新手,所以如果有错误,我很抱歉。 谢谢
in my project im having manager class and calc class. calc class derived from CWinThread. and manager have a pointer to calc class. how do i using AfxBeginThread and where?
note im new in mfc so im sorry if there is mistakes.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够调用
Calc::CreateThread()
。您需要重写CWinThread::Run()
方法来实现您的功能,并且您可能还需要重写CWinThread::InitInstance()
和CWinThread ::ExitInstance()
方法也是如此。You should be able to call
Calc::CreateThread()
. You need to override theCWinThread::Run()
method to implement your functionality, and you might also want to override theCWinThread::InitInstance()
andCWinThread::ExitInstance()
methods too.我认为这是一个 MFC 教程类问题。
因此,让我向您推荐 www.codeproject.org,这是提供 MFC 资源的更好站点之一。 (事实上,我认为那里有一些非常优秀的文章和代码示例。)
例如,您可以在文章“MFC 线程'。
I consider this an MFC tutorial kind of question.
Therefore, let me point you to www.codeproject.org, which is one of the better sites for MFC resources. (Indeed I think there are some really excellent articles and code examples there.)
For example, you can find an intro on MFC threads in the article 'Threads with MFC'.