现在我创建了一个全新的SDI项目 视图提供了一个函数:GetDocument(),它帮助我获取当前文档的数据
但是,当我调用GetDocument()函数时,VC告诉我发生了一些错误:Debug Assertion Failed
以下是我的设置
class CHorse_programView : public CView
{
protected: // create from serialization only
CHorse_programView();
DECLARE_DYNCREATE(CHorse_programView)
// Attributes
public:
CHorse_programDoc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CHorse_programView)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CHorse_programView();
CHorse_programDoc * GetDoc()
{
CFrameWnd * pFrame = (CFrameWnd *)(AfxGetApp()->m_pMainWnd);
return (CHorse_programDoc *) pFrame->GetActiveDocument();
}
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CHorse_programView)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
我想在这个函数中调用GetDocument()
CHorse_programView::CHorse_programView()
{
GetDocument();
}
出了什么问题
答案 0 :(得分:1)
在CView构建时,CDocument和CView尚未连接。您可以在视图中将代码移动到OnInitialUpdate以获得完整功能。
答案 1 :(得分:0)
在视图的构造函数中,尚未将其分配给文档 - 稍后会出现。