MFC一个类如何调用其他类中的成员函数?
我在CRubberbandView这个类中写好了一个成员函数voidbresenham(double,double,double,double),想在CDialog1类中...
我在CRubberbandView这个类中写好了一个成员函数void bresenham(double,double,double,double),想在CDialog1类中OnOK()的调用bresenham()这个函数,使得点击后运行CRubberbandView这个类中的bresenham()函数,应该怎么做
展开
4个回答
展开全部
想办法获得CRubberbandView的一个指针,用指针调用那个函数
如果你那个View已经注册过,且处于active 状态,可用
//#include "mainframe.h"
//#inlcude "ruberandview.h"
CMainFrame *pMain=(CMainFrame *)AfxGetApp()-> m_pMainWnd;
CRubberbandView *pView=(CRubberbandView *)pMain-> GetActiveView();
pView->bresenham();
如果你那个View已经注册过,且处于active 状态,可用
//#include "mainframe.h"
//#inlcude "ruberandview.h"
CMainFrame *pMain=(CMainFrame *)AfxGetApp()-> m_pMainWnd;
CRubberbandView *pView=(CRubberbandView *)pMain-> GetActiveView();
pView->bresenham();
展开全部
用指针:
//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()
//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()
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在CDialog1中包含CRubberbandView的头文件
在CDialog1的ONOK()函数中定义一个CRubberbandView的对象rb
调用函数 rb. bresenham
试下可以不
在CDialog1的ONOK()函数中定义一个CRubberbandView的对象rb
调用函数 rb. bresenham
试下可以不
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//#include "mainframe.h"
//#inlcude "ruberandview.h"
CMainFrame *pMain=(CMainFrame *)AfxGetApp()-> m_pMainWnd;
CRubberbandView *pView=(CRubberbandView *)pMain-> GetActiveView();
pView->bresenham();
//#inlcude "ruberandview.h"
CMainFrame *pMain=(CMainFrame *)AfxGetApp()-> m_pMainWnd;
CRubberbandView *pView=(CRubberbandView *)pMain-> GetActiveView();
pView->bresenham();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询