这个程序是什么问题
#include<string>#include"stdafx.h"
#include<conio.h>
using namespace std;
class here
{
public:
here(int n,string z,char s)
{
num=n;
name=z;
sex=s;
cout<<"constructor called."<<endl;
}
~here( )
{
cout<<"destructor called."<<endl;
}
void qu_num( )
{
cout<<num<<endl;
cout<<name<<endl;
cout<<sex<<endl;
}
private:
int num;
string name;
char sex;
};
int main( )
{
here t(100,"huang",'f');
t.qu_num();
getch( );
return 0;
}
这是那里的错误 请指教