c++这是什么错误error C2143: syntax error : missing ';' before 'PCH creation point'
//main.cpp#include<iostream>#include"t.h"usingnamespacestd;voidmian(){tgt;cout<<gt.a;...
//main.cpp
#include <iostream>
#include "t.h"
using namespace std;
void mian()
{
t gt;
cout<<gt.a;
}
//t.cpp
#include <iostream>
#include "t.h"
using namespace std;
t::t(){
a=1;
}
//t.h
class t{
public:
t();
int a;
} 展开
#include <iostream>
#include "t.h"
using namespace std;
void mian()
{
t gt;
cout<<gt.a;
}
//t.cpp
#include <iostream>
#include "t.h"
using namespace std;
t::t(){
a=1;
}
//t.h
class t{
public:
t();
int a;
} 展开
3个回答
展开全部
t.h文件的类后边少了一个;
修改如下:
//t.h
class t{
public:
t();
int a;
};
修改如下:
//t.h
class t{
public:
t();
int a;
};
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在你给出的代码里没看到什么“PCH”啊
错误提示里面应该有说错误出在那个文件里吧
看看你的t.h头文件里定义类t时最后的“}”后面有没有加“;”
错误提示里面应该有说错误出在那个文件里吧
看看你的t.h头文件里定义类t时最后的“}”后面有没有加“;”
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//t.h
class t{
public:
t();
int a;
};
少个“;”
class t{
public:
t();
int a;
};
少个“;”
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询