【c++11关键字】 bitand bitor

2020-10-18  本文已影响0人  小鱼号的代码日记
/*
 * c++11关键字
 * bitand &
 * bitor  |
 * 小鱼号的代码日志
*/
#include <QCoreApplication>
#include <iostream>
using namespace  std;
int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);
    auto v = 3L;
    auto b = 4;
    auto c = v bitand b; //&
    auto d = v bitor b;  //|
    return a.exec();
}
上一篇下一篇

猜你喜欢

热点阅读