甜甜荷花

文章
6
资源
0
加入时间
3年0月21天

ostream&

为什么这么写ostream& operator 而不写成ostream operator  ostream是c++中的输出流,是一个定义输出到显示(输出)设备上的一个类& 在c++中表示引用,即使用的当前值,而不是通过自动复制的一般在重载的时候用的上这个格式ostream& operator如果写成这样ostream operator 则:Poi