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
     ❯   

Go 条件语句


条件语句用于根据不同的条件执行不同的操作。


Go 条件语句

条件可以是 truefalse

Go 支持数学中常用的 比较运算符

  • 小于 <
  • 小于或等于 <=
  • 大于 >
  • 大于或等于 >=
  • 等于 ==
  • 不等于 !=

此外,Go 还支持常用的 逻辑运算符

  • 逻辑与 &&
  • 逻辑或 ||
  • 逻辑非 !

您可以使用这些运算符或它们的组合来创建不同决策的条件。

示例 尝试一下
x > y 尝试一下 »
x != y 尝试一下 »
(x > y) && (y > z) 尝试一下 »
(x == y) || z 尝试一下 »

Go 具有以下条件语句

  • 使用 if 指定一个代码块,如果指定的条件为真则执行该代码块
  • 使用 else 指定一个代码块,如果相同的条件为假则执行该代码块
  • 使用 else if 指定一个新的条件进行测试,如果第一个条件为假则执行该代码块
  • 使用 switch 指定许多备选的代码块来执行

×

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.