14.12 Conditional operator
敬业的IT人
互联网
佚名
2008-2-20 19:17:42
The ?: operator is called the conditional operator. It is at times also
called the ternary operator.
conditional-expression:
conditional-or-expression
conditional-or-expression ? expression : expression
A conditional expression of the form b ? x : y first evaluates the
condition b. Then, if b is true, x is
evaluated and becomes the result of the operation. Otherwise, y is
evaluated and becomes the result of the
operation. A conditional expression never evaluates both x and y.
The conditional operator is right-associative, meaning that operations are
grouped from right to left.
[Example: For example, an expression of the form a ? b : c ? d : e is
evaluated as
a ? b : (c ? d : e). end example]
The first operand of the ?: operator must be an expression of a type that
can be implicitly converted to
bool, or an expression of a type that implements operator true. If neither
of these requirements is
satisfied, a compile-time error occurs.
The second and third operands of the ?: operator control the type of the
conditional expression. Let X and Y
be the types of the second and third operands. Then,
?If X and Y are the same type, then this is the type of the conditional
expression.
?Otherwise, if an implicit conversion (?3.1) exists from X to Y, but not
from Y to X, then Y is the type of
the conditional expression.
?Otherwise, if an implicit conversion (?3.1) exists from Y to X, but not
from X to Y, then X is the type of
the conditional expression.
?Otherwise, no expression type can be determined, and a compile-time error
occurs.
The run-time processing of a conditional expression of the form b ? x : y
consists of the following steps:
?First, b is evaluated, and the bool value of b is determined:
If an implicit conversion from the type of b to bool exists, then this
implicit conversion is performed to
produce a bool value.
Otherwise, the operator true defined by the type of b is invoked to produce
a bool value.
?If the bool value produced by the step above is true, then x is evaluated
and converted to the type of
the conditional expression, and this becomes the result of the conditional
expression.
?Otherwise, y is evaluated and converted to the type of the conditional
expression, and this becomes the
result of the conditional expression.进入讨论组讨论。
- 最新文章
- Calton板的数值模拟[02-19]
- 一个无奈的程序设计练习题[02-19]
- MVP2006成都聚会图片[02-19]
- drwtsn32 调试windows程序[02-19]
- 青少年培养与网络文化漫谈(上篇)[02-19]
- 关于N皇后问题高效试探回溯算法的分析[02-19]
- 相关文章
- 汇编源码--gameport[02-19]
- 5个DOS专用文件的6种io重定向,more实现管道原理[02-19]
- Linux中给Python2.2加DCOracle模块[02-19]
- HELLO,WORLD进阶汇编程序系列[02-19]
- HELLO WORLD进阶汇编程序系列[02-19]
- Oracle两年内不再收购 瞄准中间件市场[02-19]
