深入学习C++关键字:与操作符等价的关键字

93 阅读1分钟
关键字:
    and    //等价于 &&
关键字:
    and_eq //等价于 &=
关键字:
    bitand    //等价于&
    bitor     //等价于|
关键字:
    compl    //等价于~
关键字:
    or    //等价于||
    or_eq //等价于|=