C++运算符转换,了解一下举几个简单例子
&& 等价于 and
# 等价于 %:
{ 等价于 <%
} 等价于 %>
& 等价于 bitand
%:include <iostream> //# 等价于 %:
using namespace std;
int main()<% // { 等价于 <%
int age=40;
if(1)<%
cout << age << ":" << bitand age << endl;// &等价于bitand
}
}