程序调试错误
#include<string>#include<iostream>
using namespace std;
class Student //声明Student类
{public:
void student(int n,string nam,char s) //定义构造函数
{num=n;
name=nam;//提示有错
sex=s;
cout<<"Constructor called."<<endl; //输出有关信息
}
~Student( ) //定义析构函数
{cout<<"Destructor called."<<endl;} //输出有关信息
void display( ) //定义成员函数
{cout<<"num: "<<num<<endl;
cout<<"name: "<<name<<endl;
cout<<"sex: "<<sex<<endl; }
private:
int num;
string name[10];
char sex;
};
int main( )
{Student stud1(10010,"Wang_li",'f'); //提示有错
stud1.display( ); //输出学生1的数据
Student stud2(10011,"Zhang_fun",'m'); //提示有错
stud2.display( ); //输出学生2的数据
return 0;
}
大家不妨自己试试看,肯定有错,那这些错怎么改呢,我是菜鸟,刚入门,请各位大虾赐教………………