标签: powershell
使用Powershell,是否有将负数设置为零的功能?
或者是这样吗?
If ($num -lt 0) {$num = 0}
答案 0 :(得分:9)
如果您正在寻找更简洁的简洁方式:
$num = [math]::max(0, $num)