问题描述
- 求教大神C++问题,新手学C++编程
-
源程序如下:
#include
#include
using namespace std;
class student
{
public:
student(int n,string nam,char s)
{
num=n;
name=nam;
sex=s;
cout<<"construct called"<<endl;
}
~student()
{cout<<"destruct called."<<endl;}
void display()
{
cout<<"num"<<num<<endl;
cout<<"name"<<name<<endl;
cout<<"sex:"<<sex<<endl;}
private:
int num;
string char name;
char sex;};
int main ()
{
student stud1(10010,"wang",'m');
stud1.display();
student stud2(10011,"zhang",'f');
stud2.display();
return 0;
}
编译后有个问题:
D:vc++6.0sdfdf4eer.cpp(25) : error C2628: 'string' followed by 'char' is illegal (did you forget a ';'?)
问题出在这:
private:
int num;
string char name;
char sex;
求大神指点
解决方案
string char name;
这个name是string 还是 char 类型呢。
试一下 改成 string name
或 char* name.
解决方案二:
首先,string char name; 这样的格式编译器是不支持的。因为一般的格式是:类型 变量;
没有这样的格式:类型 类型 变量;
最后,提示一下LZ 贴代码时注意格式,最好能使用编辑框上面的</> 工具。
解决方案三:
string char name;
这句有问题
string是类型,char也是类型,系统无法判断你的自定义变量name到底是什么类型的
时间: 2024-11-05 12:17:58