码迷,mamicode.com
首页 > 移动开发 > 详细

关于命名空间的理解---iostream与iostream.h的区别

时间:2014-05-15 12:29:26      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:命名空间的理解   iosteam与iostream.h的区   

C++中为了避免名字定义冲突,特别引入了“名字空间的定义”,即namespace。当代码中用<iostream.h>时,输出可直接引用cout<<x;<iostream.h>继承C语言的标准库文件,未引入名字空间定义,所以可直接使用。

当代码中引入<iostream>时(C++标准),输出需要引用std::cout<<x;如果还是按原来的方法就会有错,或者直接添加using namespace std;

实例:

code1

#include "stdafx.h"
#include <iostream>
using namespace std;

int main(void)
{
	int cout=100;								//cout被覆盖

	cout<<cout;									//整数cout左移100位,不起任何作用
	system("pause");
	return 0;
}
bubuko.com,布布扣

code2

#include "stdafx.h"
#include <iostream>

int main(void)
{
	int cout=100;

	std::cout<<cout<<std::endl;		//名字空间中取出函数
	system("pause");
	return 0;
}
bubuko.com,布布扣
code3

#include <stdlib.h>
#include <iostream.h>

int main(void)
{
	int a=10;
	cout<<a<<endl;

	int cout=100;		//名字cout被覆盖
	cout<<20;

	system("pause");
	return 0;
}
bubuko.com,布布扣


关于命名空间的理解---iostream与iostream.h的区别,布布扣,bubuko.com

关于命名空间的理解---iostream与iostream.h的区别

标签:命名空间的理解   iosteam与iostream.h的区   

原文地址:http://blog.csdn.net/cjc211322/article/details/25864333

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!