运行出错,是不是系统问题
//
#include<ostream.h>
#include<conio.h>
//
class tpoint
{
public:
int x;
int y;
tpoint(int x,int y)
{
x=x;
y=y;
}
};
//
void main ()
{
tpoint p1(10,10);
cout<<"p1: " << p1.x<<"*"<<p1.y<<"\n";
getch();
}
//
运行出来应该是10*10的,但是却出-858993460*-858993460
晕哦
[此贴子已经被作者于2007-3-20 21:59:53编辑过]