设计mfc应用程序,将学生的信息添加到文件中,并将文件中的信息读取出来显示在编辑框中(任选文本文件或二进制文件实现)
时间: 2024-02-15 13:04:00 浏览: 149
学生信息管理Mfc编程
好的,这是一个典型的MFC应用程序,需要使用MFC的文档视图框架来实现。
首先,我们需要创建一个MFC文档视图应用程序。在Visual Studio中,选择“新建项目”,然后选择“Visual C++”下的“MFC应用程序”。
接下来,在“应用程序向导”中选择“单文档”框架,然后勾选“文档/视图支持”和“生成多字节字符集”。
现在我们需要设计我们的文档类和视图类。我们可以使用Visual Studio的“添加类”功能来创建它们。
首先,我们创建一个名为“StudentInfo”的结构体来存储学生的信息,如下所示:
```c++
struct StudentInfo {
CString name;
int age;
CString major;
double gpa;
};
```
然后,在文档类中,我们创建一个名为“studentList”的std::vector来存储所有学生的信息。
```c++
class CMyDoc : public CDocument
{
protected:
CMyDoc() noexcept;
DECLARE_DYNCREATE(CMyDoc)
// Attributes
public:
std::vector<StudentInfo> studentList;
// Operations
public:
void AddStudent(const StudentInfo& student);
bool LoadFromFile(const CString& fileName);
bool SaveToFile(const CString& fileName);
// Overrides
public:
virtual BOOL OnNewDocument();
virtual void Serialize(CArchive& ar);
// Implementation
public:
virtual ~CMyDoc();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
};
```
在文档类中,我们还需要实现AddStudent()、LoadFromFile()和SaveToFile()函数来添加学生、从文件中读取学生信息和将学生信息保存到文件中。
```c++
void CMyDoc::AddStudent(const StudentInfo& student)
{
studentList.push_back(student);
SetModifiedFlag();
}
bool CMyDoc::LoadFromFile(const CString& fileName)
{
CFile file;
if (!file.Open(fileName, CFile::modeRead))
return false;
CArchive ar(&file, CArchive::load);
studentList.clear();
int count;
ar >> count;
for (int i = 0; i < count; i++) {
StudentInfo student;
ar >> student.name >> student.age >> student.major >> student.gpa;
studentList.push_back(student);
}
SetModifiedFlag(FALSE);
return true;
}
bool CMyDoc::SaveToFile(const CString& fileName)
{
CFile file;
if (!file.Open(fileName, CFile::modeCreate | CFile::modeWrite))
return false;
CArchive ar(&file, CArchive::store);
ar << (int)studentList.size();
for (const auto& student : studentList) {
ar << student.name << student.age << student.major << student.gpa;
}
SetModifiedFlag(FALSE);
return true;
}
```
接下来,我们需要设计视图类来显示学生信息。我们可以使用Visual Studio的“添加类”功能来创建它。
在视图类中,我们需要添加一些编辑框来显示学生信息。我们还需要添加一些按钮来触发添加学生、从文件中读取学生信息和将学生信息保存到文件中的操作。
在视图类中,我们需要实现OnInitDialog()函数来初始化编辑框和按钮,并实现OnAddStudent()、OnLoadFromFile()和OnSaveToFile()函数来响应按钮的单击事件。
```c++
class CMyView : public CFormView
{
protected:
CMyView() noexcept;
DECLARE_DYNCREATE(CMyView)
// Form Data
public:
enum { IDD = IDD_MY_FORM };
CEdit m_editName;
CEdit m_editAge;
CEdit m_editMajor;
CEdit m_editGPA;
// Overrides
public:
virtual void OnDraw(CDC* /*pDC*/);
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual BOOL OnInitDialog();
afx_msg void OnAddStudent();
afx_msg void OnLoadFromFile();
afx_msg void OnSaveToFile();
DECLARE_MESSAGE_MAP()
// Implementation
public:
virtual ~CMyView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
};
```
在实现OnInitDialog()中,我们需要将编辑框和按钮与类成员变量关联起来。
```c++
BOOL CMyView::OnInitDialog()
{
CFormView::OnInitDialog();
m_editName.SubclassDlgItem(IDC_EDIT_NAME, this);
m_editAge.SubclassDlgItem(IDC_EDIT_AGE, this);
m_editMajor.SubclassDlgItem(IDC_EDIT_MAJOR, this);
m_editGPA.SubclassDlgItem(IDC_EDIT_GPA, this);
return TRUE;
}
```
在实现OnAddStudent()中,我们需要从编辑框中读取学生信息,并将学生信息添加到文档类中。
```c++
void CMyView::OnAddStudent()
{
StudentInfo student;
m_editName.GetWindowText(student.name);
CString strAge;
m_editAge.GetWindowText(strAge);
student.age = _ttoi(strAge);
m_editMajor.GetWindowText(student.major);
CString strGPA;
m_editGPA.GetWindowText(strGPA);
student.gpa = _ttof(strGPA);
CMyDoc* pDoc = GetDocument();
pDoc->AddStudent(student);
m_editName.SetWindowText(_T(""));
m_editAge.SetWindowText(_T(""));
m_editMajor.SetWindowText(_T(""));
m_editGPA.SetWindowText(_T(""));
}
```
在实现OnLoadFromFile()中,我们需要打开文件对话框,选择要读取的文件,然后从文件中读取学生信息,并显示在编辑框中。
```c++
void CMyView::OnLoadFromFile()
{
CFileDialog dlg(TRUE, _T(".txt"), NULL, OFN_HIDEREADONLY | OFN_FILEMUSTEXIST, _T("Text Files (*.txt)|*.txt|Binary Files (*.bin)|*.bin|All Files (*.*)|*.*||"), this);
if (dlg.DoModal() == IDOK) {
CString fileName = dlg.GetPathName();
CMyDoc* pDoc = GetDocument();
if (pDoc->LoadFromFile(fileName)) {
CString message;
message.Format(_T("Loaded %d students from file."), pDoc->studentList.size());
AfxMessageBox(message);
if (!pDoc->studentList.empty()) {
const auto& student = pDoc->studentList.back();
m_editName.SetWindowText(student.name);
m_editAge.SetWindowText(CString().Format(_T("%d"), student.age));
m_editMajor.SetWindowText(student.major);
m_editGPA.SetWindowText(CString().Format(_T("%0.2f"), student.gpa));
}
}
else {
AfxMessageBox(_T("Failed to load students from file."));
}
}
}
```
在实现OnSaveToFile()中,我们需要打开文件对话框,选择要保存的文件,然后将学生信息保存到文件中。
```c++
void CMyView::OnSaveToFile()
{
CFileDialog dlg(FALSE, _T(".txt"), NULL, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, _T("Text Files (*.txt)|*.txt|Binary Files (*.bin)|*.bin|All Files (*.*)|*.*||"), this);
if (dlg.DoModal() == IDOK) {
CString fileName = dlg.GetPathName();
CMyDoc* pDoc = GetDocument();
if (pDoc->SaveToFile(fileName)) {
CString message;
message.Format(_T("Saved %d students to file."), pDoc->studentList.size());
AfxMessageBox(message);
}
else {
AfxMessageBox(_T("Failed to save students to file."));
}
}
}
```
现在我们已经完成了MFC应用程序的设计。我们可以编译并运行应用程序来测试它是否正常工作。
阅读全文