标签: c++ operators
执行&&和and之间有什么区别吗?例如:
&&
and
bool resA = (a and b and c); bool resB = (a && b and c);
resA和resB是否相同,或者如果不相同,为什么会选择其中一个?
resA
resB