在书上P344有:
CDocument * CMultiDocTemplate::OpenDocumentFile(LPCTSTR lpszPathName,BOOL
     bMakeVisible)
{
CDocument * pDocument = CreateNewDocument();
...
CFrameWnd * pFrame = CreateNewFrame(pDocument, NULL);
...
..
}P345页有:
CFrameWnd * CDocTemplate::CreateNewFrame(CDocument * pDoc,CFrameWnd * 
     pOther)
{
CCreateContext context;
context.m_pCurrentFrame = pOther;   //这里pOther 是NULL啊
context.m_pCurrentDoc = pDoc;
.....}问题是: pOther 是NULL, 那么往后构建CView的时候,没有Frame可以吗?