SaveReadDoc.cpp
资源名称:直接读写文件.rar [点击查看]
上传用户:wmflame
上传日期:2010-02-25
资源大小:39k
文件大小:2k
源码类别:
文件操作
开发平台:
Visual C++
- // SaveReadDoc.cpp : implementation of the CSaveReadDoc class
- //
- #include "stdafx.h"
- #include "SaveRead.h"
- #include "SaveReadDoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CSaveReadDoc
- IMPLEMENT_DYNCREATE(CSaveReadDoc, CDocument)
- BEGIN_MESSAGE_MAP(CSaveReadDoc, CDocument)
- //{{AFX_MSG_MAP(CSaveReadDoc)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- // DO NOT EDIT what you see in these blocks of generated code!
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CSaveReadDoc construction/destruction
- CSaveReadDoc::CSaveReadDoc()
- {
- strcmp(name,"");
- for(int i=0;i<8;i++){
- m_nSubject[i].score=0.0;
- m_nSubject[i].subject=0;
- }
- total=0;
- // TODO: add one-time construction code here
- }
- CSaveReadDoc::~CSaveReadDoc()
- {
- }
- BOOL CSaveReadDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CSaveReadDoc serialization
- void CSaveReadDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- ar<<name; //写入姓名
- ar<<total; //写入总成绩
- for(int i=0;i<9;i++)
- {
- ar<<m_nSubject[i].subject; //写入相应科目的序号
- ar<<m_nSubject[i].score; //写入相应科目的成绩
- }
- }
- else
- {
- ar>>name; //读出姓名
- ar>>total ; //读出总成绩
- for(int i=0;i<9;i++)
- {
- ar>>m_nSubject[i].subject; //读出相应科目的序号
- ar>>m_nSubject[i].score; //读出相应科目的成绩
- }
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CSaveReadDoc diagnostics
- #ifdef _DEBUG
- void CSaveReadDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CSaveReadDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CSaveReadDoc commands