📜  Powershell-条件

📅  最后修改于: 2020-11-19 08:00:01             🧑  作者: Mango


决策结构具有一个或多个要由程序评估或测试的条件,以及确定条件为真时要执行的一个或多个语句,以及确定条件时要执行的其他语句(可选)是假的。

以下是大多数编程语言中常见的典型决策结构的一般形式-

做决定

PowerShell脚本语言提供以下类型的决策声明。单击以下链接以查看其详细信息。

Sr.No. Statement & Description
1 if statement

An if statement consists of a boolean expression followed by one or more statements.

2 if…else statement

An if statement can be followed by an optional else statement, which executes when the boolean expression is false.

3 nested if statement

You can use one if or elseif statement inside another if or elseif statement(s).

4 switch statement

A switch statement allows a variable to be tested for equality against a list of values.