Heim > Artikel > Backend-Entwicklung > So führen Sie einen bedingten Ausdruck in C++ aus
条件表达式以三元运算符的形式执行,用于根据条件值在两个表达式之间进行选择。其语法为:condition ? expr1 : expr2。计算条件值,若真则返回 expr1 的值,若假则返回 expr2 的值。
C++ 条件表达式执行方式
条件表达式,也称为三元运算符,是 C++ 中一种用于根据条件值选择两个不同表达式的语法结构。其一般语法格式为:
<code class="cpp">condition ? expr1 : expr2;</code>
其中:
condition
是一个布尔表达式,用于确定条件是否为真。expr1
是当 condition
为真时要执行的表达式。expr2
是当 condition
为假时要执行的表达式。执行过程:
condition
的值。如果 condition
为真,则继续执行步骤 2;否则,继续执行步骤 3。condition
为真,则计算真表达式 expr1
的值并返回该值。condition
为假,则计算假表达式 expr2
的值并返回该值。示例:
<code class="cpp">int a = 5; int b = 10; int result = a > b ? a : b;</code>
在这个例子中,条件表达式 a > b
计算出真值,因此 result
将被赋值为 a
的值,即 5。
注意:
expr1
和 expr2
必须具有相同的类型。Das obige ist der detaillierte Inhalt vonSo führen Sie einen bedingten Ausdruck in C++ aus. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!