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

2025-01-06 11:10:46
推荐回答(4个)
回答1:

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

回答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()

回答3:

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

回答4:

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