码迷,mamicode.com
首页 > 编程语言 > 详细

_编程语言_C++_std

时间:2017-06-19 18:32:13      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:using   std   div   相关   pac   成员   log   编程语言   class   

正常使用

cout << "Count is "<<i<<endl;

 

含有std

std::cout << "Count is " << count << std::endl;

std 是一个类(输入输出标准),包括cin 成员和cout成员.

使用  using name space std 以后才能使用它的成员.

#include<iostream.h> 中不存在类std,但它有cin,out的相关函数,不需要使用命名空间了.

_编程语言_C++_std

标签:using   std   div   相关   pac   成员   log   编程语言   class   

原文地址:http://www.cnblogs.com/zpsoe/p/7049883.html

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