主题:构造函数求助
#include <iostream.h>
class point //3
{ //4
public:
int x;
int y;
point()
{
x=0;
y=0;
}
void output()
{
cout<<x<<endl<<y<<endl;
}
}; //17
void main()
{
point pt;
pt.output();
}
F:\Ñо¿Éú¹¤×÷\ѧϰ\C++ѧϰ\P35\gouzao\Text1.c(3) : error C2061: syntax error : identifier 'point'
F:\Ñо¿Éú¹¤×÷\ѧϰ\C++ѧϰ\P35\gouzao\Text1.c(3) : error C2059: syntax error : ';'
F:\Ñо¿Éú¹¤×÷\ѧϰ\C++ѧϰ\P35\gouzao\Text1.c(4) : error C2449: found '{' at file scope (missing function header?)
F:\Ñо¿Éú¹¤×÷\ѧϰ\C++ѧϰ\P35\gouzao\Text1.c(17) : error C2059: syntax error : '}'
乱码是中文路径,很短的一个程序,我也不知道是哪里的语法问题。。求各位帮忙看看吧,谢谢!