C++的一个小问题,关于namespace
源程序如下:#include<istream.h>usingnamespacestd;classpoint{private:intx,y;public:point(int...
源程序如下:
#include<istream.h>
using namespace std;
class point{
private:
int x,y;
public:
point(int a=0,int b=0)
{
x=a;
y=b;
}
void move(int a,int b)
{
x=a;
y=b;
}
int Getx()
{
return x;
}
int Gety()
{
return y;
}
};
void main()
{
point p1,p2;
p1.move(10,20);
p1.move(3,4);
}
编译时出现错误: error C2871: 'std' : does not exist or is not a namespace
为什么会这样呢?
把using namespace std;删掉编译就正确了 展开
#include<istream.h>
using namespace std;
class point{
private:
int x,y;
public:
point(int a=0,int b=0)
{
x=a;
y=b;
}
void move(int a,int b)
{
x=a;
y=b;
}
int Getx()
{
return x;
}
int Gety()
{
return y;
}
};
void main()
{
point p1,p2;
p1.move(10,20);
p1.move(3,4);
}
编译时出现错误: error C2871: 'std' : does not exist or is not a namespace
为什么会这样呢?
把using namespace std;删掉编译就正确了 展开
4个回答
展开全部
我怎么记得是没有分号的哈,好久没用,忘了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<istream.h>
改成
#include<iostream>
改成
#include<iostream>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你用的是#include <iostream.h>这个头文件是无名称空间的
#include <iostream>是需要std名称空间的
#include <iostream>是需要std名称空间的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询