Powershell - 如果声明

一个 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.