gpt4 book ai didi

powershell - $prompt = ($defaultValue,$prompt)[[bool]$prompt] - 在 PowerShell 中模拟三元条件

转载 作者:行者123 更新时间:2023-12-02 18:49:40 26 4
gpt4 key购买 nike

我正在学习使用 PowerShell 编写脚本,我发现这段代码可以帮助我完成一个项目 该示例来自 Is there a one-liner for using default values with Read-Host? .

$defaultValue = 'default'

$prompt = Read-Host "Press enter to accept the default [$($defaultValue)]"

$prompt = ($defaultValue,$prompt)[[bool]$prompt]

我想我明白 $prompt = ($defaultValue,$prompt) 正在创建一个二元素数组,并且 [bool] 部分正在强制 $prompt 数据类型为 bool 值,但我不明白第三行代码作为一个整体的作用。

最佳答案

这是一种常见的编程模式:

if (user entered a price)
{
price = user entered value
}
else
{
price = default value
}

因为这很常见,而且也很冗长,所以一些语言有一个特殊的三元运算符来更简洁地编写所有代码,并将变量分配给“这个值或那个值”一动。例如在 C# 中你可以这样写:

price = (user entered a price) ? (user entered value) : (default value)
# var = IF [boolean test] ? THEN (x) ELSE (y)

如果测试为 true,则 ? 分配 (x),如果测试为 false,则分配 (y)

在Python中,它是这样写的:

price = (user entered value) if (user entered a price) else (default value)

在 PowerShell 中,它是这样写的:

# you can't have a ternary operator in PowerShell, because reasons. 

是的。不允许使用漂亮的短代码模式。

但是你可以做的是滥用数组索引(@('x', 'y')[0] is 'x'@('x', ' y')[1] 是 'y' 和 ) 并编写丑陋且令人困惑的代码高尔夫行:

$price = ($defaultValue,$userValue)[[bool]$UserEnteredPrice]

# var (x,y) is an array $array[ ] is array indexing
(0,1) are the array indexes of the two values

[bool]$UserEnteredPrice casts the 'test' part to a True/False value
[True/False] used as indexes into an array indexing makes no sense
so they implicitly cast to integers, and become 0/1

# so if the test is true, the $UserValue is assigned to $price, and if the test fails, the $DefaultValue is assigned to price.

它的行为类似于三元运算符,只是它令人困惑且丑陋,并且在某些情况下,如果您不小心评估两个数组表达式,无论选择哪一个,它都会让您陷入困境(与真正的 运算符)。

<小时/>

编辑:我真正应该添加的是我更喜欢的 PowerShell 表单 - 您可以直接在 PowerShell 中分配 if 测试的结果并执行以下操作:

$price = if ($userValue) { $userValue } else { $DefaultValue }

# ->

$prompt = if ($prompt) { $prompt } else { $DefaultValue }

关于powershell - $prompt = ($defaultValue,$prompt)[[bool]$prompt] - 在 PowerShell 中模拟三元条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40892156/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com