在main.cpp中
LLC* llc = new LLC();
这是llc.cpp中的构造函数
LLC::LLC() :
{
cout<<"test"<<endl;
}
这是我得到的错误:
llc.cpp(36): error: expected an identifier
{
^
我犯什么错误?
构造函数在LLC.cpp头文件中的LLC类的公共部分中给出。
最佳答案
LLC::LLC() :
{
cout<<"test"<<endl;
}
应该
LLC::LLC()
{
cout<<"test"<<endl;
}
关于c++ - 在C++中定义一个空的构造函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22831263/