好吧,因为我遇到了一些未定义的类问题,因为一个头文件正在添加另一个正在添加自己的头文件,它可能正在编译一些当时不存在的类,所以我做了这个并放在开头,编译正常,但是在编译的最后一秒它抛出了一个错误
Error 230 error LNK2020: unresolved token (0600003C) Servicos::.ctor Servicos.obj
-
public ref class Servicos: public System::Windows::Forms::Form {
public:
Servicos(Usuario*,unordered_map<int, std::string>*);
}
由于当时我并不关心其他函数,所以我只放置了构造函数,因为它所做的只是实例化类以使对话框显示。(虽然我也尝试过添加所有功能,但发生了同样的错误)
这是原文:
namespace MyProject {
public ref class Servicos: public System::Windows::Forms::Form
{
//... Some Variables declared
public:
Servicos(Usuario* user,
unordered_map<int, std::string>* fab_contas_)
{
this->fab_contas_email = fab_contas_;
this->usuario = user;
InitializeComponent();
//
//TODO: Add the constructor code here
//
}
//... And Other Functions
};
}
你们中的任何人都可以指出我做错了什么吗?非常感谢!谢谢!