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.