C# 中哪个三元运算符最流行且最常用?
C# 中哪个三元运算符最流行且最常用?
Which ternary operator in C# is most popular and mostly used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
C# 中哪个三元运算符最流行且最常用?
Which ternary operator in C# is most popular and mostly used?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
有时称为三元运算符的运算符实际上被称为条件运算符。其形式如下
:A 是布尔表达式,B 和 C 是同一类型的表达式,或者是 B 的类型可以隐式转换为 C 的类型的类型,反之亦然。
首先评估 A;如果结果为
true
,则评估 B 以提供结果。否则,对 C 进行求值以提供结果。The operator sometimes known as the ternary operator is actually named the conditional operator. It's of the form
where A is a Boolean expression, and B and C are expressions either of the same type, or of types such that the type of B can be implicitly converted to the type of C or vice versa.
First A is evaluated; if the result is
true
then B is evaluated to provide the result. Otherwise C is evaluated to provide the result.它很受欢迎,因为它可以生成更短、更易读的代码。考虑这个简单的例子:
而不是
It is popular because it leads to shorter and more readable code. Consider this simple example:
instead of