本文介绍了什么是“操作符”<<称为?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道大多数运算符的名称,但不确定运算符<<
和 operator>>
I know the names of most of the operators but not sure what operator<<
and operator>>
are called.
即
operator=() // the assignment operator
operator==() // the equality of comparison operator
operator++() // the increment operator
operator--() // decrement operator etc.
operator<() // the less-than operator
推荐答案
<
左移
>>
右移
这篇关于什么是“操作符”<<称为?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!