短路求值
Posted helloworld2019
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了短路求值相关的知识,希望对你有一定的参考价值。
#include<iostream> using namespace std; int main() int a=3,b=3; (a=0)&&(b=5); printf("a=%d,b=%d\\n",a,b); (a=1)||(b=5); printf("a=%d,b=%d",a,b);
a=0为假所以没有对B进行操作
a=1为真,所以没有对b进行操作
以上是关于短路求值的主要内容,如果未能解决你的问题,请参考以下文章