我是靠谱客的博主 怕孤单乐曲,最近开发中收集的这篇文章主要介绍这么写ostream& operator << (ostream& os, Point& pt)而不写成ostream operator << (ostream& os, Point& pt),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

为什么这么写
ostream& operator << (ostream& os, Point& pt)
而不写成
ostream operator << (ostream& os, Point& pt)
ostream&这个返回值类型用定义成别名的形式吗??

在网上找到了答案如下:

如果写成这样
ostream operator << (ostream& os, Point& pt) 
则:
Point a, b;
cout<<a<<b;
错误,只能写为:
cout<<a;
cout<<b;
原因在于
cout<<a<<b;
相当于:
(cout<<a)<<b;
第一个()中返回cout的临时变量,它不可以作为左值(因为operator << (ostream& os, Point& pt)的第一个参数是ostream&,而不是ostream),因而错误。

如果写成:
ostream& operator << (ostream& os, Point& pt) 
则:
cout<<a<<b;
正确,因为它等同于
(cout<<a)<<b;
(cout<<a)返回cout的引用,即就是它自己,它可以再次作为左值,因而能够连着写这个输出流 。


最后

以上就是怕孤单乐曲为你收集整理的这么写ostream& operator << (ostream& os, Point& pt)而不写成ostream operator << (ostream& os, Point& pt)的全部内容,希望文章能够帮你解决这么写ostream& operator << (ostream& os, Point& pt)而不写成ostream operator << (ostream& os, Point& pt)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部