/*
* 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();
}
网友评论