- PowerShell功能特点
- PowerShell历史
- PowerShell和命令提示符的区别
- PowerShell与Bash Shell的区别
- PowerShell以管理员身份运行
- Windows PowerShell ISE
- PowerShell核心
- 创建并运行PowerShell脚本
- PowerShell注释
- PowerShell Cmdlet
- PowerShell基本cmdlet命令
- PowerShell Get-childItem命令
- PowerShell Get-Item命令
- PowerShell Get-Location命令
- PowerShell set-item命令
- PowerShell set-location命令
- PowerShell new-item命令
- PowerShell copy-item命令
- PowerShell move-item命令
- PowerShell remove-item命令
- PowerShell rename-item命令
- PowerShell add-content命令
- PowerShell clear-content
- PowerShell get-content命令
- PowerShell get-date命令
- PowerShell set-content命令
- PowerShell out-file命令
- PowerShell write-host命令
- PowerShell get-command命令
- PowerShell invoke-command命令
- PowerShell get-help命令
- PowerShell start-process命令
- PowerShell test-path命令
- PowerShell foreach-object命令
- PowerShell sort-object命令
- PowerShell where-object命令
- PowerShell变量
- PowerShell自动变量
- PowerShell首选项变量
- PowerShell数组
- PowerShell哈希表
- PowerShell运算符
- PowerShell算术运算符
- PowerShell赋值运算符
- PowerShell比较运算符
- PowerShell逻辑运算符
- PowerShell重定向运算符
- PowerShell拆分和合并运算符
- PowerShell if语句
- PowerShell if-else语句
- PowerShell else-if语句
- PowerShell Switch语句
- PowerShell Do-While循环
- PowerShell for循环
- PowerShell ForEach循环
- PowerShell While循环
- PowerShell Continue和Break
- PowerShell字符串
- PowerShell函数
- PowerShell Try Catch Finally
PowerShell注释
与其他编程或脚本语言一样,可以在PowerShell中提供注释以用于文档目的。
在PowerShell中,有两种类型的注释:
- 单行注释
- 多行注释或注释块
单行注释
单行注释是在每行的开头键入井号#
的注释。 #
符号右边的所有内容都将被忽略。 如果在脚本中编写多行,则必须在每行的开头使用井号#
符号。
单行注释的语法
以下是单行注释的两种语法:
语法1:
<Any Command or statement> # <Any comment>
语法2:
# <Any comment> <Any Command or statement>
示例1:此示例显示如何在行尾使用注释
PS C:\> get-childitem # 此命令显示C驱动器的子项
示例2:此示例显示如何在代码之前和语句末尾使用注释。
PS C:\> # 此代码用于打印从1到10的偶数 PS C:\> for($i = 1; $i -le 10; $i++) # 该循环语句从1开始初始化变量并增加到10 >> { >> $x=$i%2 >> if($x -eq 0) # if条件检查变量x的值是否等于0,如果是,则执行if内的语句块 >> { >> echo $i # 该语句显示可被2整除的数字 >> } >> }
以上语句输出结果为:
2 4 6 8 10
2. 多行注释
在PowerShell 2.0或更高版本中,引入了多行注释或块注释。 要注释多行,请将<#
符号放在第一行的开头,将#>
符号放在最后一行的末尾。
多行注释的语法
以下块显示多行注释的语法:
<# 多行注释......... 多行注释......... 多行注释....................#> Statement-1 Statement-2 Statement-N
示例: 下面的示例描述如何在代码中使用多行注释。
PS C:\> <# 此代码用于打印 >> 给定数字的阶乘#> PS C:\> $a=5 PS C:\> $fact=1 PS C:\> for ($i=$a;$i -ge 1;$i--) >> { >> $fact=$fact * $i; >> }
以上语句输出结果为:
PS C:\> $fact 120
关注微信小程序
扫描二维码
程序员编程王