我想在PowerShell中创建一个数组数组。
$x = @(
@(1,2,3),
@(4,5,6)
)
工作正常。但是,有时我在数组列表中只有一个数组。在这种情况下,PowerShell会忽略其中一个列表:
$x = @(
@(1,2,3)
)
$x[0][0] # Should return 1
Unable to index into an object of type System.Int32.
At line:1 char:7
+ $a[0][ <<<< 0]
+ CategoryInfo : InvalidOperation: (0:Int32) [], RuntimeException
+ FullyQualifiedErrorId : CannotIndex
如何创建一个数组数组,保证它仍然是一个二维数组,即使数组中只有一个数组项?
答案 0 :(得分:42)
添加逗号力以创建数组:
$x = @(
,@(1,2,3)
)
简单方法:
$x = ,(1,2,3)