- PowerShell 教程
- PowerShell - 主页
- PowerShell - 概述
- PowerShell - 环境设置
- PowerShell - Cmdlet
- PowerShell - 文件和文件夹
- PowerShell - 日期和时间
- PowerShell - 文件输入/输出
- PowerShell - 高级 Cmdlet
- PowerShell - 脚本编写
- PowerShell - 特殊变量
- PowerShell - 运算符
- PowerShell - 循环
- PowerShell - 条件
- PowerShell - 数组
- PowerShell - 哈希表
- PowerShell - 正则表达式
- PowerShell - 反引号
- PowerShell - 括号
- PowerShell - 别名
- 有用的 PowerShell 资源
- PowerShell - 快速指南
- 有用的 PowerShell 资源
- PowerShell - 讨论
PowerShell - If 语句
一个 if 语句由一个布尔表达式后跟一个或多个语句组成。
语法
以下是一个 if 语句的语法:-
if(Boolean_expression) { // Statements will execute if the Boolean expression is true }
如果布尔表达式求值为 true,则 if 语句中的代码块将被执行。如果不是,则在 if 语句结束后的第一组代码(在闭合大括号后)将被执行。
流程图
示例
$x = 10 if($x -le 20){ write-host("This is if statement") }
这将生成以下结果:-
输出
This is if statement.
powershell_conditions.htm
广告