C++在对表达式求值时,会采用短路逻辑。
这意味着一旦最终结果可以确定,就不会对表达式剩余部分求值。
例如:
bool result=ba||bb||(i>0);
如果ba的值为true,整个表达式必然为true,因此不会对其他部分求值。
#include <iostream> using namespace std; int main() { int i=0; //可以看到if语句遇到true就直接不执行后面的i++了,i++没有被执行 if(true||i++) cout<<"i="<<i<<endl;//因此i=0 int j=0; //因为第一个遇到的是false,所以继续向后执行,j++被执行 if(false||j++||true) cout<<"j="<<j<<endl;//因此j=1 int r1=5>3?5:r1=10;//因为5>3值为bool,因此r1=10并没有被执行 cout<<"r1="<<r1<<endl; r1=5<3?5:r1=10; cout<<"r1="<<r1<<endl; int a,b; int result=0; while(cin>>a>>b&&a!=0) { //可以从这里测试短路逻辑 int result=a>b?a:result=100; cout<<"result="<<result<<endl; } cin.get(); cin.get(); return 0; }
短路逻辑可以阻止代码执行多余的操作,但是如果后面的表达式以某种方式影响程序,例如上面的,
if(true||i++) cout<<"i="<<i<<endl;//因此i=0
如果你是希望执行完之后i++,那么就会产生BUG,需要注意。
——————————————————————————————————————————————————
//写的错误或者不好的地方请多多指导,可以在下面留言或者给我发邮件,指出我的错误以及不足,以便我修改,更好的分享给大家,谢谢。
转载请注明出处:https://www.royalchen.com/
author:royalchen
Email:royalchen@royalchen.com
———————————————————————————————————————————————————