friend istream &operator>>

问题描述:

friend istream &operator>>

这个是C++的语法:定义了一个友元函数,operator >>,这个函数本身又是对操作符>>的重载,其返回的类型是istream的一个引用.
涉及的概念:类、友元,操作符重载,流以及引用.