- PowerShell 教程
- PowerShell - 主页
- PowerShell - 概览
- PowerShell - 环境设置
- PowerShell - Cmdlet
- PowerShell - 文件和文件夹
- PowerShell - 日期和计时器
- PowerShell - 文件 I/O
- PowerShell - 高级 Cmdlet
- PowerShell - 脚本编写
- PowerShell - 特殊变量
- PowerShell - 运算符
- PowerShell - 循环
- PowerShell - 条件
- PowerShell - 数组
- PowerShell - 哈希表
- PowerShell - 正则表达式
- PowerShell - 反引号
- PowerShell - 括号
- PowerShell - 别名
- PowerShell 有用资源
- PowerShell - 快速指南
- PowerShell - 有用资源
- PowerShell - 讨论
Powershell - 条件
决策制定结构包含一个或多个条件供程序评估或测试,同时还包含一个或多个语句,若条件被确定为真则执行这些语句,而条件被确定为假时选择性执行其他语句。
以下是在大多数编程语言中发现的典型决策制定结构的一般形式 −
PowerShell 脚本语言提供以下类型的决策制定语句。单击以下链接查看其详细信息。
序号 | 语句和说明 |
---|---|
1 | if 语句
if 语句包含一个布尔表达式,后跟一个或多个语句。 |
2 | if...else 语句
if 语句后可以跟一个可选的 else 语句,布尔表达式为假时执行该语句。 |
3 | 嵌套 if 语句
可以在另一个 if 或 elseif 语句中使用一个 if 或 elseif 语句。 |
4 | switch 语句
switch 语句允许针对值列表测试一个变量以判断是否相等。 |
广告