码迷,mamicode.com
首页 >  
搜索关键字:ostream    ( 266个结果
《C++primer(第五版)》学习之路-第八章:IO库
【 声明:版权所有,转载请标明出处,请勿用于商业用途。  联系信箱:libin493073668@sina.com】 8.1 IO类 1. istream(输入流)类型,提供输入操作 ostream(输出流)类型,提供输出操作 cin,一个istream对象,从标准输入读取数据 cout,一个ostream对象,向标准输出写入数据 cerr,一个ostream对象,通...
分类:编程语言   时间:2015-09-23 10:37:07    阅读次数:236
实现C++ String类
头文件,函数大都隐式内联了。#ifndef MYSTRING_H#define MYSTRING_H#include #include class MyString { friend std::ostream& operator>(std::istream &, MyString &);public...
分类:编程语言   时间:2015-09-13 19:46:45    阅读次数:156
C++重载流插入运算符和流提取运算符
C++的流插入运算符“>”是C++在类库中提供的,所有C++编译系统都在类库中提供输入流类istream和输出流类ostream。cin和cout分别是istream类和ostream类的对象。在类库提供的头文件中已经对“>”进行了重载,使之作为流插入运算符和流提取运算符,能用来输出和输入C++标准...
分类:编程语言   时间:2015-09-10 09:40:14    阅读次数:215
C++札记
1、endl操作符作用就是将调用的数据用完后自动清空缓冲区,同时换行。而/n只是单纯的换行而已。//the declaration of endltemplate inline basic_ostream& __CLRCALL_OR_CDECL endl(basic_ostre...
分类:编程语言   时间:2015-09-05 22:09:54    阅读次数:135
C++ 打印输出指针
大家想必在很多场景下需要打印输出指针地址。看一下下面的输出: CObject*pObject=newCObject;std::coutinlinebasic_ostream&__CLRCALL_OR_CDECLoperator&_Ostr,constchar*_Val)其它打印指针则:ostream...
分类:编程语言   时间:2015-09-05 13:38:14    阅读次数:173
[c++primer][01]快速入门
1.1编写简单的C++程序main函数是唯一被操作系统显式调用的函数编译执行g++ -o test program.cpp 1.2初窥输入/输出iostream:输入输出流istream:cin从窗口读ostream:cout、cerr、clog输出至窗口写入到流std::cout > 输入项 .....
分类:编程语言   时间:2015-09-03 23:10:51    阅读次数:243
C++ 模板类demo
#include using namespace std;template class MyVector{ friend ostream & operator(ostream &out, const MyVector &obj);public: MyVector(int size = ...
分类:编程语言   时间:2015-09-02 00:40:18    阅读次数:210
第十一章:流类库与输入/输出
主要内容: 1.I/O流的概念 2.输出流 2.1 ostream 2.2 ofstream 2.3 ostringstream 3.输入流 3.1 istream 3.2 ifstream 3.3 istringstream 4.输入/输出流本块知识点,...
分类:其他好文   时间:2015-08-30 19:23:25    阅读次数:132
C++_重载运算符<< 使自定义数据可以用cout输出
通过重载运算符 出错的片段const ostream& operator<<(ostream &output, const Point &a){ return output << a.x << " " << a.y ; } 正确的代码与完整测试程序: #include #include using namespace std; struct Point{ int x;...
分类:编程语言   时间:2015-08-11 16:19:10    阅读次数:307
266条   上一页 1 ... 14 15 16 17 18 ... 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!