为了账号安全,请及时绑定邮箱和手机立即绑定

MFC一个类如何调用其他类中的成员函数?

MFC一个类如何调用其他类中的成员函数?

海绵宝宝撒 2019-02-05 14:06:13
我在CRubberbandView这个类中写好了一个成员函数void bresenham(double,double,double,double),想在CDialog1类中OnOK()的调用bresenham()这个函数,使得点击后运行CRubberbandView这个类中的bresenham()函数,应该怎么做
查看完整描述

4 回答

?
梦里花落0921

TA贡献1772条经验 获得超6个赞

在CDialog1中包含CRubberbandView的头文件
在CDialog1的ONOK()函数中定义一个CRubberbandView的对象rb
调用函数 rb. bresenham
试下可以不

查看完整回答
反对 回复 2019-03-15
?
慕尼黑5688855

TA贡献1848条经验 获得超2个赞

用指针:
//B.h
class B
{
public:
Fun();
};
CB * GetB(); //全局函数
//B.CPP
CB g_B;
CB * GetB()
{
return &g_B;
}
//A.cpp
#include "B.h"
GetB().Fun(); //可以这样调用B中的成员函数Fun()



查看完整回答
反对 回复 2019-03-15
?
繁星淼淼

TA贡献1775条经验 获得超11个赞

想办法获得CRubberbandView的一个指针,用指针调用那个函数
如果你那个View已经注册过,且处于active 状态,可用
//#include "mainframe.h"
//#inlcude "ruberandview.h"
CMainFrame *pMain=(CMainFrame *)AfxGetApp()-> m_pMainWnd;
CRubberbandView *pView=(CRubberbandView *)pMain-> GetActiveView();
pView->bresenham();

查看完整回答
反对 回复 2019-03-15
?
有只小跳蛙

TA贡献1824条经验 获得超8个赞

//#include "mainframe.h"
//#inlcude "ruberandview.h"
CMainFrame *pMain=(CMainFrame *)AfxGetApp()-> m_pMainWnd;
CRubberbandView *pView=(CRubberbandView *)pMain-> GetActiveView();
pView->bresenham();

查看完整回答
反对 回复 2019-03-15
  • 4 回答
  • 0 关注
  • 985 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信