我知道大多數操作員的姓名,但不知道調用了哪些operator<<
和operator>>
。叫什麼「operator <<」?
即
operator=() // the assignment operator
operator==() // the equality of comparison operator
operator++() // the increment operator
operator--() // decrement operator etc.
operator<() // the less-than operator
等等...
它取決於操作數。 – Gumbo 2010-07-19 13:59:28
我喜歡稱他們爲'<<' and '>>',但對某些人來說發音有點困難。 – 2010-07-19 13:59:33
w.r.t是iostream頭,<<是提取運算符。 (>>是插入)。很調皮。 – 2010-07-19 14:05:00