Windows Powershell强类型数组
Powershell数组一般具有多态性,如果你不指定元素的具体类型,解释器会自动选择合适的类型存储每个元素。如果要统一限制所有元素的类型,可是使用类型名和一对方括号作为数组变量的类型。这样每当赋值时,会自动类型检查。如果目标数据类型不能转换成功,就会抛出一个异常。
PS C:Powershell> [int[]] $nums=@() PS C:Powershell> $nums+=2012 PS C:Powershell> $nums+=12.3 PS C:Powershell> $nums+="999" PS C:Powershell> $nums+="can not convert" Cannot convert value "can not convert" to type "System.Int32". Error: "Input string was not in a correct format." At line:1 char:6 + $nums <<<< +="can not convert" + CategoryInfo : MetadataError: (:) [], ArgumentTransformationMetadataException + FullyQualifiedErrorId : RuntimeException
相关推荐
zlsdmx 2020-05-14
eroshn 2020-05-11
zluxingzhe 2020-02-29
blncle 2020-02-11
xuanlvhaoshao 2020-01-23
wklken的笔记 2020-01-05
宿舍 2019-12-20
明月清风精进不止 2019-10-23
houdaxiami 2019-03-25
Ongoingcre 2011-09-22
jsoncorleone 2016-02-25
kekekid 2010-04-04
宁静致远 2009-06-09
timewind 2019-07-01
jsqip 2019-07-01
UsherOu 2013-02-25
静心斋 2016-03-11
ScarletLina 2011-04-09