SaveReadDoc.cpp
上传用户:wmflame
上传日期:2010-02-25
资源大小:39k
文件大小:2k
源码类别:

文件操作

开发平台:

Visual C++

  1. // SaveReadDoc.cpp : implementation of the CSaveReadDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "SaveRead.h"
  5. #include "SaveReadDoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CSaveReadDoc
  13. IMPLEMENT_DYNCREATE(CSaveReadDoc, CDocument)
  14. BEGIN_MESSAGE_MAP(CSaveReadDoc, CDocument)
  15. //{{AFX_MSG_MAP(CSaveReadDoc)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code!
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CSaveReadDoc construction/destruction
  22. CSaveReadDoc::CSaveReadDoc()
  23. {
  24. strcmp(name,"");
  25. for(int i=0;i<8;i++){
  26. m_nSubject[i].score=0.0;
  27. m_nSubject[i].subject=0;
  28. }
  29. total=0;
  30. // TODO: add one-time construction code here
  31. }
  32. CSaveReadDoc::~CSaveReadDoc()
  33. {
  34. }
  35. BOOL CSaveReadDoc::OnNewDocument()
  36. {
  37. if (!CDocument::OnNewDocument())
  38. return FALSE;
  39. // TODO: add reinitialization code here
  40. // (SDI documents will reuse this document)
  41. return TRUE;
  42. }
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CSaveReadDoc serialization
  45. void CSaveReadDoc::Serialize(CArchive& ar)
  46. {
  47. if (ar.IsStoring())
  48. {
  49. ar<<name;      //写入姓名
  50. ar<<total;      //写入总成绩
  51. for(int i=0;i<9;i++)
  52. {
  53. ar<<m_nSubject[i].subject;  //写入相应科目的序号
  54.     ar<<m_nSubject[i].score;    //写入相应科目的成绩
  55. }
  56. }
  57. else
  58. {
  59. ar>>name;      //读出姓名
  60. ar>>total ;     //读出总成绩
  61. for(int i=0;i<9;i++)
  62. {
  63. ar>>m_nSubject[i].subject;  //读出相应科目的序号
  64.     ar>>m_nSubject[i].score;    //读出相应科目的成绩
  65. }
  66. }
  67. }
  68. /////////////////////////////////////////////////////////////////////////////
  69. // CSaveReadDoc diagnostics
  70. #ifdef _DEBUG
  71. void CSaveReadDoc::AssertValid() const
  72. {
  73. CDocument::AssertValid();
  74. }
  75. void CSaveReadDoc::Dump(CDumpContext& dc) const
  76. {
  77. CDocument::Dump(dc);
  78. }
  79. #endif //_DEBUG
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CSaveReadDoc commands