主要传递文档类指针

源代码在线查看: a.cpp

软件大小: 50 K
上传用户: fengkuangyidao
关键词: 文档 指针
下载地址: 免注册下载 普通下载 VIP

相关代码

				// A.cpp : 实现文件
				//
				
				#include "stdafx.h"
				#include "test1.h"
				#include "A.h"
				#include ".\a.h"
				
				//#include "test1View.h"
				
				// CA
				
				IMPLEMENT_DYNAMIC(CA, CWnd)
				CA::CA()
				{
					//c=1;
					//d=2;
				}
				
				CA::CA(Ctest1Doc* pDoc)
				{
					//c=1;
					//d=2;
				//	m_pDoc=pDoc;
				}
				
				CA::~CA()
				{
				}
				
				
				BEGIN_MESSAGE_MAP(CA, CWnd)
				END_MESSAGE_MAP()
				
				
				
				// CA 消息处理程序
				
				
				void CA::Ceshi(Ctest1Doc* pDoc)
				{
					//Ctest1View myView;
					//myView.a=1;
					//myView.b=2;
					//pDoc=new Ctest1Doc;
					//pDoc->a=3;
					//pDoc->b=4;
					//int f=pDoc->b;
					////pDoc.a=3;
					////pDoc.b=4;
					////int f=pDoc.b;
					////int f;
					m_pDoc=pDoc;
					m_pDoc->a=10;
					int f=m_pDoc->a;
					CString str;
					str.Format("%d",f);
					AfxMessageBox(str);
				}
				
							

相关资源