看过一些教程,他的vc6.0编辑环境有这样的提示,如
#include "iostream.h"
class Point
{
public:
int x;
int y; Point()
{
x = 0;
y = 0;
}
void Print_Point()
{
cout<<x<<endl<<y<<endl;
}
};void main()
{
Point test;
test.x = 3;
test.y = 4;
//cout<<test.x<<endl<<test.y<<endl;
test.Print_Point();
}当定义了一个类后,main()中,
写到
Point test;
test.
时,编辑环境会自动提示他有x,y,Print_Point()而我自已的vc6.0却不会自动提示,那么
他是否用的是vc6.0?还是他安装了一些插件,还是我没有配置好vc6.0?