Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

C# 布尔值


C# 布尔值

在编程中,你经常需要一种数据类型,它只能取两个值之一,例如

  • 是 / 否
  • 开 / 关
  • 真 / 假

为此,C# 提供了 bool 数据类型,它可以取值 truefalse


布尔值

布尔类型用 bool 关键字声明,并且只能取值 truefalse

示例

bool isCSharpFun = true;
bool isFishTasty = false;
Console.WriteLine(isCSharpFun);   // Outputs True
Console.WriteLine(isFishTasty);   // Outputs False

动手试试 »

然而,在布尔表达式中返回布尔值更常见,用于条件测试(见下文)。


布尔表达式

布尔表达式通过比较值/变量返回布尔值:TrueFalse

这对于构建逻辑并找到答案很有用。

例如,你可以使用 比较运算符,例如 **大于** (>) 运算符来判断一个表达式(或变量)是否为真

示例

int x = 10;
int y = 9;
Console.WriteLine(x > y); // returns True, because 10 is higher than 9

动手试试 »

或者更简单

示例

Console.WriteLine(10 > 9); // returns True, because 10 is higher than 9

动手试试 »

在下面的示例中,我们使用 **等于** (==) 运算符来计算表达式的值

示例

int x = 10;
Console.WriteLine(x == 10); // returns True, because the value of x is equal to 10

动手试试 »

示例

Console.WriteLine(10 == 15); // returns False, because 10 is not equal to 15

动手试试 »


现实生活中的例子

让我们考虑一个“现实生活中的例子”,我们需要确定一个人是否已达到投票年龄。

在下面的示例中,我们使用 >= 比较运算符来判断年龄 (25) 是否 **大于或等于** 投票年龄限制,该限制设置为 18

示例

int myAge = 25;
int votingAge = 18;
Console.WriteLine(myAge >= votingAge);

动手试试 »

很酷,对吧?一个更好的方法(因为我们现在正在起飞),是将上面的代码封装在 if...else 语句中,这样我们就可以根据结果执行不同的操作

示例

如果 myAge **大于或等于** 18,则输出“已达到投票年龄!”。否则输出“尚未达到投票年龄”。

int myAge = 25;
int votingAge = 18;

if (myAge >= votingAge) 
{
  Console.WriteLine("Old enough to vote!");
} 
else 
{
  Console.WriteLine("Not old enough to vote.");
}

动手试试 »

表达式的布尔值是所有 C# 比较和条件的基础。

你将在下一章了解有关 条件 (if...else) 的更多信息。


C# 练习

通过练习测试自己

练习

填写缺失的部分以打印值 TrueFalse

 isCodingFun = true;
 isFishTasty = false;
Console.WriteLine();
Console.WriteLine();

开始练习


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.