gpt4 book ai didi

powershell - 在Powershell中进行类型转换?奇怪的语法?

转载 作者:行者123 更新时间:2023-12-03 14:41:38 32 4
gpt4 key购买 nike

将XML从文件读入变量可以像这样完成:

[xml]$x=get-content myxml.xml

但是为什么不呢?
$x=[xml]get-content myxml.xml

这使:
Unexpected token 'get-content' in expression or statement.
At line:1 char:20
+ $x=[xml]get-content <<<< myxml.xml
+ CategoryInfo : ParserError: (get-content:String) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : UnexpectedToken

那就是:为什么强制转换操作在等号的左侧完成,通常在编程语言中,强制转换在右侧完成,例如java中的(例如):
a=(String)myobject;

最佳答案

$x=[xml](get-content myxml.xml)

关于powershell - 在Powershell中进行类型转换?奇怪的语法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11685265/

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