第一章 深入浅出IO流

[复制链接]

该用户从未签到

2380

主题

2433

帖子

9139

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
9139
QQ
跳转到指定楼层
楼主
发表于 2018-1-21 19:07:27 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

想要查看内容赶紧注册登陆吧!

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
  1. 如果没有iostream

  2.         如果没有iostream,那么我们的第一个程序应该怎么写呢?如果有iostream,我们的第一个程序成通常会是:

  3. //+--------------------

  4. #include <iostream>

  5. int main(){
  6.         std::cout<<"Hello World"<<std::endl;
  7.         return 0;
  8. }

  9. //+---------------------

  10.         这通常是我们学习C++最开始引入的程序,这个程序依赖了C++标准库的输出流ostream的对象cout,那么问题来了,如果我们自定义了一个类型,简单一点比如MyString,那么我们没有理由不让它支持打印这个操作,这时候如果没有iostream,我们应该怎么办呢?


  11. //+-----------------------

  12. class MyString{
  13.         //
  14.         // 实现细节
  15.         //
  16. };

  17. //+-----------------------

  18.         通常来说,如果我们需要让我们的类型支持流的的输出,那么我们就会考虑如下的方式:

  19. //+-----------------------

  20. std::ostream& operator<<(std::ostream& os,const MyString& str)
  21.         //
  22.         // 实现细节
  23.         //
  24.         return os;
  25. }

  26. //+-------------------------

  27.         这种方式是我们常用的方式,是每一个C++程序员必须第一时间掌握的实现方式,下面我们会细说。现在的问题是这个函数我们应该怎么实现才能减少设计上带来的耦合,我们可以这么做:

  28. //+-------------------------
  29. namespace std{
  30.         class ostream;
  31. }

  32. std::ostream& operator<<(std::ostream& os,const MyString& str);

  33. //+-------------------------

  34.         注意,我们这里仅声明不实现,我们在其他的地方单独定义该函数,这样可以减少我们的类型MyString对iostream的耦合,但是在我们定义该函数的地方必须要包含iostream头文件,否则ostream就是未定义的类,当我们实现了这个函数之后,我们便可这么使用:

  35. //+------------------------

  36. #include "MyString.h"
  37. #include <iostream>

  38. int main(){
  39.         MyString str = "Hello World";
  40.         std::cout<<str<<std::endl;
  41.         return 0;
  42. }

  43. //+------------------------

  44.         这个问题解决了设计上的耦合问题,但是并没有解决上面我们所提出的问题:如果我们没有iostream的话呢?

  45.         没有iostream没有关系,iostream依赖于C++标准库,但是有不依赖于C++ 标准库的东西,比如put系列函数,该系列函数是C运行库提供的函数,由于C语言是很多编程语言的祖先,而C++更是C的扩展,所以在C++中使用C函数是毫无问题的,但是此处使用put系列函数显得太不C++,当然可以对其进行封装再使用——面向对象编程不就是这样的吗?到这一步,我们可以来考虑使用类的概念来对put系列函数的封装,此处我们选择使用putc,putc函数的作用是将一个字符写进指定的文件中,这刚好满足我们的需求。

  46.         将数据写进目标地址中,秉着这一概念,我们可以先为我们的io定义一个函数:

  47. //+------------------------

  48. void sendstr(FILE* fp,const char* str,int n)
  49.         for(int i=0;i<n;++i){
  50.                 putc(*str++,fp);
  51.         }
  52. }

  53. //+-------------------------

  54.         现在回到我们的MyString上面:

  55. //+-------------------------

  56. class MyString{...};

  57. FILE* operator<<(FILE* fp,const MyString& str)
  58.         sendstr(fp,str.c_str(),str.size());
  59.         return fp;
  60. }

  61. //+-------------------------
  62.        
  63.         有了这个操作符之后我们便可以写出下面的代码:

  64. //+-------------------------

  65. int main(){
  66.         MyString str = "Hello World";
  67.         stdout<<str;
  68.         return 0;
  69. }

  70. //+--------------------------

  71.         注意了,我们这里使用的是stdout而不是std::cout,stdout是C语言定义的标准输出,也就是控制台,而std::cout是C++的ostream的对象,目的地也是控制台,他是对stdout的封装。回到我们上面的代码,这种写法没毛病,但是很别扭,尤其在C++里面,所以我们应该尝试对stdout进行封装,如下:

  72. //+-------------------------

  73. class MyStrIobase{
  74. public:
  75.         virtual ~MyIobase(){}
  76.         virtual void send(const char* ptr,int n){}
  77. };

  78. //+------------------------

  79.         这是一个接口操作,有了这个接口,再加上我们上面的概念,所以我们可以对sendstr进行扩展:

  80. //+------------------------

  81. void sendstr(MyStrIobase& strio,const char* ptr,int n)
  82.         strio.send(ptr,n)
  83. }

  84. //+------------------------
  85.        
  86.         现在还没法工作,因为我们的MyStrIoBase啥都没做,如果我们想要做些什么,那么就需要从MyStrIoBase派生出我们自己的类,比如打印到控制台的OStream:

  87. //+-----------------------

  88. class OStream : public MyStrIobase{
  89. public:
  90.         virtual void send(const char* ptr,int n){
  91.                 for(int i=0;i<n;++i){
  92.                         putc(*ptr++,stdout)
  93.                 }
  94.         }
  95. };



  96. OStream gOut;
  97. int main(){
  98.         MyString str = "Hello World";
  99.         gOut<<str;
  100.         return 0;
  101. }
  102.        

  103. //+--------------------

  104.         现在编译上面的程序我们会到编译错误,没有相应的操作符供我们使用,不过这都不是事,我们只需要扩展一下我们的operator<<操作符即可,我们可以使用模板让他做更多的事:


  105. //+---------------------

  106. template<class T>
  107. T& operator<<(T& io,const MyString& str){
  108.         sendstr(io,str.c_str(),str.size());
  109.         return io;
  110. }

  111. //+--------------------

  112.         现在上面的代码能够正常工作了,当我们运行程序会在黑乎乎的控制台上看到Hello World的输出,那么如果我们想要使用std::ostream来输出呢?这时候我们应该怎么做呢?我们说了,我们使用模板来实现operator<<操作符,目的就是让他可以做更多事,所以对于std::ostream来说,MyString一样可以支持,只需要我们重载一个sendstr即可,如下:


  113. //+--------------------

  114. void sendstr(std::ostream& os,const char* ptr,int n){
  115.         os.write(ptr,n);
  116. }


  117. int main(){
  118.         MyString str = "Hello World";
  119.         std::cout<<str;
  120.         return 0;
  121. }

  122. //+--------------------
  123.        
  124.         程序如同我们预期正常工作,那么,现在我们再回过头去看看我们的MyStrIobase,如果我们想要让他对文件的支持,那么我们应该怎么做呢?这些问题如果放到后面来说可能很简单,当然放在这里说也是很简单的,我们对FILE*进行简单的封装即可:


  125. //+--------------------

  126. class FileOStream : public MyStrIobase{
  127. public:
  128.         FileOStream(const char* fileName,const char* mode){
  129.                 mFile = fopen(fileName, mode);
  130.         }
  131.         virtual void send(const char* ptr, int n){
  132.                 if (mFile == nullptr)
  133.                         return;
  134.                 for (int i = 0; i < n; ++i){
  135.                         putc(*ptr++, mFile);
  136.                 }
  137.         }

  138.         void close(){
  139.                 fclose(mFile);
  140.                 mFile = nullptr;
  141.         }
  142. private:
  143.         FILE* mFile{ nullptr };
  144. };

  145. int main(){
  146.         MyString str = "Hello World";
  147.         FileOStream out("text.txt","w+");
  148.         out << str;
  149.         out.close();
  150.         return 0;
  151. }

  152. //+---------------------

  153.         运行程序后我们便将字符写进了文件之中。


  154. -----------------------------------


  155. iostream

  156.         到此,我们对io的操作有了一个大概的了解,接下里我们深入的观察一下iostream的工作原理,我们还是从最简单的开始:


  157. //+----------------------

  158. int main(){
  159.         std::cout<<"Hello World"<<std::endl;
  160.         return 0;
  161. }

  162. //+---------------------

  163.         当我们执行上面程序的时候会发现控制台上打印出Hello World字符,同时光标移动到下一行的起始处。我们用一句通俗的话来对这句代码的描述:将"Hello World"塞进std::cout中,然后std::endl操作std::cout,有了前面的基础,我们要理解这句话不难,程序是由左向右执行,所以第一步的执行是如下的函数:

  164. //---------------------

  165. std::ostream& operator<<(std::ostream& os,const char* msg){
  166.         os.write(msg,strlen(msg));
  167.         return os;
  168. }

  169. //+--------------------

  170.         在执行完上面这句代码之后返回std::cout,所以接下来执行的确实:std::cout<<std::endl;为什么此处不能理解为将std::endl塞进std::cout中呢?原因很简单,因为std::endl是一个函数指针,他大致可以定义为下面的样子:

  171. //+-------------------

  172. std::ostream& endl(std::ostrem& os){
  173.         os<<"\n";
  174.         os.flush();
  175.         return os;
  176. }

  177. //+------------------



  178.         看到这里是不是觉得C++很有趣呢?那么问题来了,std::endl又是如何与流操作符联系上的呢?解决方式有很多,这里我们简单的说一种方式:

  179. //+-------------------

  180. typedef std::function<std::ostream&(std::ostream&)> streamoperationtype;
  181. std::ostream& operator<<(std::ostream& os,streamoperationtype fun){
  182.         return fun(os);
  183. }

  184. //+----------------
  185.        
  186.         是不是很有意思……当然标准库可不是这么干的,这只是我个人这么干,但是思路应该是一致的,就算不一致,至少我们又知道了另一种解决方案。那么,打印在控制台的操作是不是只有cout呢?当然不是,下面是vs中的iostream声明的几个流对象,w开头的是针对unicode字符的流对象,常用的是cin和cout以及cerr,至于clog是用于输出日志的,它写的目的地和cerr一样都是stderr。

  187. //+----------------

  188. __PURE_APPDOMAIN_GLOBAL extern _CRTDATA2 istream cin, *_Ptr_cin;
  189. __PURE_APPDOMAIN_GLOBAL extern _CRTDATA2 ostream cout, *_Ptr_cout;
  190. __PURE_APPDOMAIN_GLOBAL extern _CRTDATA2 ostream cerr, *_Ptr_cerr;
  191. __PURE_APPDOMAIN_GLOBAL extern _CRTDATA2 ostream clog, *_Ptr_clog;

  192. __PURE_APPDOMAIN_GLOBAL extern _CRTDATA2 wistream wcin, *_Ptr_wcin;
  193. __PURE_APPDOMAIN_GLOBAL extern _CRTDATA2 wostream wcout, *_Ptr_wcout;
  194. __PURE_APPDOMAIN_GLOBAL extern _CRTDATA2 wostream wcerr, *_Ptr_wcerr;
  195. __PURE_APPDOMAIN_GLOBAL extern _CRTDATA2 wostream wclog, *_Ptr_wclog;


  196. //+-----------------

  197.         在ostream里面定义了处理内部信息的输出操作符:

  198. //+----------------

  199. ...

  200. ostream& operator<<(short);
  201. ostream& operator<<(int);
  202. ostream& operator<<(long);
  203. ostream& operator<<(long long);

  204. ostream& operator<<(unsigned short);
  205. ostream& operator<<(unsigned int);
  206. ostream& operator<<(unsigned long);
  207. ostream& operator<<(unsigned long long);

  208. ostream& operator<<(float);
  209. ostream& operator<<(double);
  210. ostream& operator<<(long double);

  211. ostream& operator<<(bool);
  212. ostream& operator<<(const void*);
  213. ostream& put(char);
  214. ostream& write(const char*,streamsize);
  215. ...

  216. //+------------------

  217.         我们看到里面缺少了对char的操作符,但是put和write可以简单地写出字符,所以就没必要实现一个流操作符(这是C++之父所说,因为标准就是这么定义),可以通过全局函数来实现:


  218. //+------------------

  219. ostream& operator<<(ostream& os,char ch){
  220.         os.put(ch);
  221.         return os;
  222. }

  223. ostream& operator<<(ostream& os,const char* msg){
  224.         os.write(msg,strlen(msg));
  225.         return os;
  226. }

  227. int main(){
  228.         char A('A');
  229.         cout<<"A = "<<A<<" = "<<int(A)<<endl;
  230. }
  231.        
  232. //+--------------------

  233.         write可以将一段buffer写到指定地方,所以换句话说,write除了写字符串之外还能够将数据按照二进制的放写进文件储存起来。

  234.         我们再来看另一个细节:

  235. //+-------------------

  236. int main(){
  237.         cout<<true<<"\t"<<false<<endl;
  238. }

  239. //+-------------------

  240.         运行程序,我们得到的结果是1和0,那么我们可不可以希望他输出的是true和false,当然可以:

  241. //+-------------------

  242. #include <iostream>
  243. #include <iomanip>

  244. int main(){
  245.         cout<<true<<"\t"<<false<<endl;
  246.         cout<<boolalpha;
  247.         cout<<true<<"\t"<<false<<endl;
  248. }

  249. 输出结果:
  250. 1         0;
  251. true        false;

  252. //+-------------------

  253.         boolalpha 在iomanip中定义,当使用他之后所有的bool类型操作将按照字符形式打印。

  254.         下面这个函数有点特殊:

  255. //+-------------------

  256. ostream& operator<<(const void*);

  257. //+-------------------

  258.         但他却让我们打印指针成了可能,很多时候我们确实很需要打印指针,当我们需要追踪一个对象的时候:

  259. //+-------------------

  260. int main(){
  261.         int* ptr = new int(10);
  262.         cout<<&p<<"\t"<<p<<endl;
  263. }
  264.        
  265. 输出结果:

  266. 0x7788ff45        0x7895f2ff

  267. //+-------------------

  268.         对于内置的类型标准库都为我们实现了流的操作符,那么对于我们自定义的类型,如果我们有需要的话那就需要我们自行定义了,比如:

  269. //+------------------

  270. class MInt{
  271. public:
  272.         MInt(int val):mVal(val){}
  273.         MInt(const MInt& other):mVal(other.mVal){}
  274. private:
  275.         int mVal;
  276. };

  277. int main(){
  278.         MInt a(10);
  279.         cout<<a<<endl;
  280. }

  281. //+------------------

  282.         上面的程序没法通过编译,因为cout无法对MInt操作。
  283.         cout同样没有对char实现流操作符,但是却提供了一个全局函数来操作char,让char如同其他内置类型一样可以使用流操作,这是一个思路,当然也是规则,重载流操作符的形式必须如下:
  284.        
  285. //+-----------------

  286. ostream& operator<<(ostream& os,const T& other);

  287. //+-----------------


  288.         上面的 T 是就是要操作的类型,针对上面的MInt,可以如下:


  289. //+------------------

  290. ostream& operator<<(ostream& os,const MInt& other){
  291.         os<<other.mVal;
  292.         return os;
  293. }

  294. //+----------------

  295.         现在又一个问题来了,mVal是MInt的私有变量,所以是不能直接访问的,但是除此之外又没他发,当然可以给MInt提供一个接口让他返回mVal,不过除此之外还是有其他办法的——友元函数。


  296. //+----------------

  297. class MInt{
  298. public:
  299.         MInt(int val):mVal(val){}
  300.         MInt(const MInt& other):mVal(other.mVal){}
  301.         friend ostream& operator<<(ostream& os,const MInt& other);
  302. private:
  303.         int mVal;
  304. };

  305. int main(){
  306.         MInt a(10);
  307.         cout<<a<<endl;
  308. }

  309. //+---------------

  310.         现在一切ok,可以看到想象中的结果。

  311.         和ostream一样,istream同样针对内置类型都实现输入流操作符。

  312. //+---------------


  313. istream& operator>>(short&);
  314. istream& operator>>(int&);
  315. istream& operator>>(long&);
  316. istream& operator>>(long long&);

  317. istream& operator>>(unsigned short&);
  318. istream& operator>>(unsigned int&);
  319. istream& operator>>(unsigned long&);
  320. istream& operator>>(unsigned long long&);

  321. istream& operator>>(float&);
  322. istream& operator>>(double&);
  323. istream& operator>>(long double&);

  324. istream& operator>>(bool&);
  325. istream& operator>>(void*&);
  326. istream& get(char);
  327. ...

  328. //+------------------

  329. 想要通过cin来初始化对象,我们只需要实现相应的函数即可,而这个函数的样子如下:

  330. //+------------------

  331. template<class T>
  332. istream& operator>>(T& val);

  333. //+------------------

  334.         但是很多时候我们不能这样写,为什么呢?回顾上面我们说过的ostream,或者简单点总结一下:如果我们想要用一个对象去操作另一个对象,那么该样式如下:

  335. //+------------------

  336. template<class T,class A,class B>
  337. T op(A a B b);

  338. //+------------------

  339.         这个函数的意义我们可以简单的理解为A使用op操作B返回T,按照这个思想我们来看看下面的声明表示的意义:

  340. //+------------------

  341. template<class T>
  342. T operator+(const T& left,const T& right); // 表示 T res = left + right;

  343. template<class T>
  344. T operator-(const T& left,const T& right); // 表示 T res = left - right;


  345. template<class T>
  346. T operator*(const T& left,const T& right); // 表示 T res = left*right;

  347. template<class T>
  348. T operator/(const T& left,const T& right); // 表示 T res = left/right;

  349. ....


  350. //+--------------------


  351.         现在我们回头来看看让cin使用>>来操作我们的对象,cin对应的是上面我们的left,而我们自己的对象就是上面对应的right,而返回的对象依然还是cin,所以要实现这个功能我们只需要实现诸如下面类型的函数:


  352. //+-------------------

  353. template<class T>
  354. istream& operator>>(istream& is,T& res);

  355. //+-------------------

  356.         此处 T 表示我们想要表达的类型,当然都是一些复合类型,但是复合类型是由简单类型组合而成,所以我们在具体实现的时候只要针对复合类型的数据成员进行cin即可,比如:

  357. //+-------------------

  358. class MInt{
  359. public:
  360.         MInt(int val = 0):mVal(val){}
  361.         MInt(const MInt& other):mVal(other.mVal){}
  362.         friend ostream& operator<<(ostream& os,const MInt& other){
  363.                 os<<other.mVal;
  364.         }
  365.         friend istream& operator>>(istream& is,MInt& out){
  366.                 is>>out.mVal;
  367.                 return is;
  368.         }

  369.         friend MInt operator+(const MInt& left,const MInt& right){
  370.                 return MInt(left.mVal + right.mVal);
  371.         }

  372.         friend MInt operator-(const MInt& left,const MInt& right){
  373.                 return MInt(left.mVal - right.mVal);
  374.         }

  375.         friend MInt operator*(const MInt& left,const MInt& right){
  376.                 return MInt(left.mVal*right.mVal);
  377.         }

  378.         friend MInt operator/(const MInt& left,const MInt& right){
  379.                 return MInt(left.mVal/right.mVal);
  380.         }
  381. private:
  382.         int mVal;
  383. };

  384. int main(){
  385.         MInt a;
  386.         cin>>a;
  387.         cout<<a<<endl;
  388.         MInt b = 10;
  389.         MInt c = a + b;
  390.         MInt d = c*a;
  391.         MInt e = d/c;
  392.         cout<<b<<endl<<c<<endl<<d<<endl<<e<<endl;       
  393.         return 0;
  394. }

  395. //+-------------------


  396.         这一章虽然在说iostream,但是内容却不局限于iostream,和其他的C++书籍比起,我们可能比较超前了些,不过我觉得以这样的方式开局应该是不错的,我属于这样的人,在接触到一门语言的时候首先考虑的是如何快如的建立交互,所以第一章的时候我们边开始思考流操作符重载这些问题,当然这些操作符重载是C++所必须的知识点,但又是一个难点,所以这些内容还是不太适用于从没接触过编程的初学者,因为我们并没有像教科书一般从基本类型开始,关于这一点,曾和同学讨论过,他认为这种难度的东西会不会吓退一部分人,我说不会,我们深入浅出的说,如果实在是对原理不甚清楚,但到后面知道怎么简单使用这也足够了,并且之所以会认为我们的第一章的难度颇大,是因为我们第一章几乎涵盖了C++的大部分知识要点,比如操作符重载,操纵器连杆器这些高级知识等,但这不些仅仅是为了让大家在C++的领域里面不只是浅尝辄止,不仅知其然而且更知其所以然,当然,这些东西后续会细说的,因为上一版很多东西就说的不清不楚,所以这一次会采取教训,当然大家也可以即使反馈。
复制代码

分享到:  QQ好友和群QQ好友和群
收藏收藏
回复

使用道具 举报

快速回复高级模式
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表