我正在尝试将这些类包含在
Form.h
文件中,如下所示:
#include"Footballer.h"
#include"League.h"
#include"LeagueTeam.h"
#include"User.h"
#include"Team.h"
#pragma once
每当我运行表格时,我都会在
Form.cpp
文件中得到这些错误:
#include "Form.h"
using namespace System;
using namespace System::Windows::Forms;
[STAThread]
void main(array<String^>^ args)
{
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
Application::Run(gcnew myproject::Form);
}
错误是:
1.类模板的参数太少
"std::array"
2."std::array" 模板参数太少
3.'^':不能在类型'std::array'
上使用这个间接寻址
我真的不知道该怎么办,有什么解决办法吗?