美文网首页
【c++11关键字】 bitand bitor

【c++11关键字】 bitand bitor

作者: 小鱼号的代码日记 | 来源:发表于2020-10-18 16:02 被阅读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();
    }
    

    相关文章

      网友评论

          本文标题:【c++11关键字】 bitand bitor

          本文链接:https://www.haomeiwen.com/subject/hhkqmktx.html