gpt4 book ai didi

Powershell如何将数字添加到变量中

转载 作者:行者123 更新时间:2023-12-03 09:53:58 24 4
gpt4 key购买 nike

如何将一个数字添加到包含在变量中的另一个数字?

$t0 = Get-date -UFormat "%H%M"
$t1 = $t0 + 10

所以,如果 $t0 是 1030,我会 $t1 值 1040。

最佳答案

在为 $t0 赋值之前强制使用 [int](get-date -uformat 返回 [string] 类型):

[int]$t0 = Get-date -UFormat "%H%M"
$t1 = $t0 + 10

如果更改顺序,powershell 的强制功能会给出预期值:
$t0 = Get-date -UFormat "%H%M"
$t1 = 10 + $t0

因为第二个操作数被强制转换为第一个操作数的类型

关于Powershell如何将数字添加到变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15930742/

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