0

当我尝试在“For_Student_Details.h”表格中使用#include“CFIS_Main.h”语句时,它不接受......任何人都可以指出我的错误吗?感谢您的帮助..

MyProject.cpp
// MyProject.cpp : main project file.

#include "stdafx.h"

#ifndef CFIS_Main_h
#define CFIS_Main_h
#include "CFIS_Main.h"
#endif

using namespace MyProject;

[STAThreadAttribute]
int main(array<System::String ^> ^args)
{
    Application::EnableVisualStyles();
    Application::SetCompatibleTextRenderingDefault(false); 

    // Create the main window and run it
    Application::Run(gcnew CFIS_Main());
    return 0;
}

我的 MdiParent 代码

//CFIS_Main.h  IsMdiContainer = True

#include "For_Student_Detials"


private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e) {
For_Student_Detials^ MyStudentDet= For_Student_Detials::GetForm(true,this);
MyStudentDet->MdiParent=this;
MyStudentDet->FormBorderStyle=System::Windows::Forms::FormBorderStyle::None;
MyStudentDet->Dock=DockStyle::Fill;
MyStudentDet->Show();
}

我的 MdiChild 代码 For_Student_Details

#include "CFIS_Main.h"  Why Not included...?????

public: static For_Student_Details^ For_Student_Details::_instance = nullptr;
public: static For_Student_Details^ For_Student_Details::GetForm(bool^ IsMDIChild, CFIS_Main^ MyInstFrm) {
if (_instance == nullptr)
    _instance = gcnew For_Student_Details();

if (_instance->IsDisposed)
    _instance = gcnew For_Student_Details();

if (IsMDIChild)
    _instance->MdiParent = MyInstFrm;

return _instance;
} 

收到以下错误

error C2061: syntax error : identifier 'CFIS_Main'
error C2065: 'MyInstFrm' : undeclared identifier
error C2660: 'CashFlow_InformationsSystem::For_Loan_Details::GetForm' : function does not take 2 arguments

从上面的代码中,它不包括CFIS_Main,我无法识别我的错误,有人可以指出我吗?感谢您的帮助

4

1 回答 1

2

您有一个循环标题参考:

  • “For_Student_Details”包括“CFIS_Main.h”
  • “CFIS_Main.h”包括“For_Student_Details”

您将需要解决此循环依赖关系。

最简单的方法是在“CFIS_Main.h”中只保留函数声明,并将定义移动到“MyProject.cpp”中,其中还包括“For_Student_Details”。button1_Click()

您还必须定义(或包含正确的标题)中CFIS_Main引用的类型For_Student_Details::GetForm()(这可能会在您修复循环包含问题后得到解决)

此外,将包含保护放在头文件中,而不是 .cpp 文件中

于 2012-06-12T17:45:34.233 回答