如何从dialog.cpp 访问在.cpp 中创建的对象,反之亦然在mfc 中?
当我创建 mfc 应用程序时,会创建以下 2 个文件 有一个 calDlg.cpp (所有 clickOK 等功能) 和 cal.cpp (及其 .h)(我打算在那里创建计时器和其他东西等对象)
只是想知道如何从 caldlg clickOk 函数访问在 cal.h/.cpp 中创建的对象,反之亦然?谢谢1
when i create a mfc app, the following 2 files are created
there a calDlg.cpp (all the clickOK etc functions)
and a cal.cpp (with its .h)(which i intend to create objects like timer and other stuff there)
just wondering how can i access the objects created in the cal.h/.cpp from the caldlg clickOk function and vice verse? thanks1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在加州 CPP
In Cal.CPP
不要忘记包含头文件 cal.h,以防它们尚未包含在内。这有时会避免很多你认为实际上不是错误的错误。
Don't forget to include your header file cal.h in case they are already not included. That would sometimes avoid you a lot of errors that you think are not actually errors as such.