免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1865 | 回复: 9
打印 上一主题 下一主题

[C++] 问大家一个常识性问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-05-25 22:49 |只看该作者 |倒序浏览
// Calculate the product of three integers
#include <iostream> // allows program to perform input and output

using std::cout; // program uses cout
using std::cin; // program uses cin
using std::endl; // program uses endl

// function main begins program execution
int main()
{
   int x; // first integer to multiply
   int y; // second integer to multiply
   int z; // third integer to multiply
   int result; // the product of the three integers

   cout << "Enter three integers: "; // prompt user for data
   cin >> x >> y >> z; // read three integers from user
   result = x * y * z; // multiply the three integers; store result
   cout << "The product is " << result << endl; // print result; end line

   return 0; //
这是我从C++ How to Program上面截取下来的代码,它这样写
using std::cout; // program uses cout
using std::cin; // program uses cin
using std::endl; // program uses endl
不烦吗?而且书上大程序也这么写,为什么它不用using namespace std;呢?而且在c++ primer上面也是这样,总是写这样的代码std:cin>>..........
我想应该是有原因的, 但是我不知道,来请教一下大家,为什么它们都不用using namespace std

论坛徽章:
0
2 [报告]
发表于 2009-05-25 23:04 |只看该作者
额,你一说,我也想起来了,帮顶 关注

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
3 [报告]
发表于 2009-05-25 23:05 |只看该作者
你要知道使用namespace的目的是什么。
小程序这样有点多此一举,在大型程序中作用就显示出来了。

论坛徽章:
1
天蝎座
日期:2013-08-25 10:27:22
4 [报告]
发表于 2009-05-25 23:11 |只看该作者
假如多个命名空间。
你只在开头using两下。。
那这两个空间里还是会存在冲突的。

论坛徽章:
0
5 [报告]
发表于 2009-05-26 07:57 |只看该作者

回复 #1 iwaich 的帖子

全都 import 进来了,如果冲突该怎么办?
这个世界上不仅有 std 这个 namespace,还有别的。
能直接 using 就直接 using,不能的再 using namespace。

论坛徽章:
0
6 [报告]
发表于 2009-05-26 09:21 |只看该作者
为了防止名空间的冲突,你可以std同样也可以其他名空间,大家都用程序到底开哪个

论坛徽章:
0
7 [报告]
发表于 2009-05-26 19:21 |只看该作者
这样啊,好像是明白了我!谢谢大伙!

论坛徽章:
0
8 [报告]
发表于 2009-05-27 00:10 |只看该作者
很好,楼主有潜力

论坛徽章:
0
9 [报告]
发表于 2009-06-09 06:14 |只看该作者
建议动手写的时候可以这样干,省事....
#include<iostream>
#include<string>
//...
using namespace std;
//...

一旦某段程序已经可以作为模块固定下来,那就...

#include<iostream>
  using std::cout;using std::endl;//...
#include<string>
  using std::string;
//...

c++这玩意就是讲求用到的才写,多余的能省就省
节约资源代码清晰,防止冲突调试轻松...
不过很多教学代码不这样,容易让人养成不是很好的习惯

论坛徽章:
0
10 [报告]
发表于 2009-06-09 08:47 |只看该作者
按道理来说,命令空间可能会冲突,但是实际工程中,一般不会那么容易冲突的,书上的就是多余的,不要太教条了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP