📅  最后修改于: 2022-03-11 14:48:57.709000             🧑  作者: Mango
/* && would work only if both is true for example */ bool a = 1==2 && 1=< 2; // would be false
/* but if they are both true it would be true */ bool a = 1==1 && 1==1; // would be true