C# 中哪个三元运算符最流行且最常用?

发布于 2024-08-10 14:18:01 字数 26 浏览 11 评论 0原文

C# 中哪个三元运算符最流行且最常用?

Which ternary operator in C# is most popular and mostly used?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一个人的旅程 2024-08-17 14:18:01

有时称为三元运算符的运算符实际上被称为条件运算符。其形式如下

A ? B : C

: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

A ? B : C

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.

浪漫人生路 2024-08-17 14:18:01

它很受欢迎,因为它可以生成更短、更易读的代码。考虑这个简单的例子:

int daysInYear = isLeapYear ? 366 : 365;

而不是

if(isLeapYear) {
   daysInYear = 366;
} else {
   daysInYear = 365;
}

It is popular because it leads to shorter and more readable code. Consider this simple example:

int daysInYear = isLeapYear ? 366 : 365;

instead of

if(isLeapYear) {
   daysInYear = 366;
} else {
   daysInYear = 365;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文