帮助在 MFC 中使用 CWinThread

发布于 2024-10-11 13:11:49 字数 126 浏览 4 评论 0原文

在我的项目中,我有经理课程和计算课程。 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

赴月观长安 2024-10-18 13:11:49

您应该能够调用Calc::CreateThread()。您需要重写 CWinThread::Run() 方法来实现您的功能,并且您可能还需要重写 CWinThread::InitInstance()CWinThread ::ExitInstance() 方法也是如此。

You should be able to call Calc::CreateThread(). You need to override the CWinThread::Run() method to implement your functionality, and you might also want to override the CWinThread::InitInstance() and CWinThread::ExitInstance() methods too.

め七分饶幸 2024-10-18 13:11:49

我认为这是一个 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'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文