Array.GetValue 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取当前 Array中指定元素的值。
重载
| 名称 | 说明 |
|---|---|
| GetValue(Int32) |
获取一维 Array中指定位置处的值。 索引指定为 32 位整数。 |
| GetValue(Int32[]) |
获取位于多维 Array中指定位置的值。 索引指定为 32 位整数数组。 |
| GetValue(Int64) |
获取一维 Array中指定位置处的值。 索引指定为 64 位整数。 |
| GetValue(Int64[]) |
获取位于多维 Array中指定位置的值。 索引指定为 64 位整数的数组。 |
| GetValue(Int32, Int32) |
获取二维 Array中指定位置处的值。 索引指定为 32 位整数。 |
| GetValue(Int64, Int64) |
获取二维 Array中指定位置处的值。 索引指定为 64 位整数。 |
| GetValue(Int32, Int32, Int32) |
获取三维 Array中指定位置处的值。 索引指定为 32 位整数。 |
| GetValue(Int64, Int64, Int64) |
获取三维 Array中指定位置处的值。 索引指定为 64 位整数。 |
示例
下面的代码示例演示如何在一维或多维数组中设置和获取特定值。
using System;
public class SamplesArray {
public static void Main() {
// Creates and initializes a one-dimensional array.
String[] myArr1 = new String[5];
// Sets the element at index 3.
myArr1.SetValue( "three", 3 );
Console.WriteLine( "[3]: {0}", myArr1.GetValue( 3 ) );
// Creates and initializes a two-dimensional array.
String[,] myArr2 = new String[5,5];
// Sets the element at index 1,3.
myArr2.SetValue( "one-three", 1, 3 );
Console.WriteLine( "[1,3]: {0}", myArr2.GetValue( 1, 3 ) );
// Creates and initializes a three-dimensional array.
String[,,] myArr3 = new String[5,5,5];
// Sets the element at index 1,2,3.
myArr3.SetValue( "one-two-three", 1, 2, 3 );
Console.WriteLine( "[1,2,3]: {0}", myArr3.GetValue( 1, 2, 3 ) );
// Creates and initializes a seven-dimensional array.
String[,,,,,,] myArr7 = new String[5,5,5,5,5,5,5];
// Sets the element at index 1,2,3,0,1,2,3.
int[] myIndices = new int[7] { 1, 2, 3, 0, 1, 2, 3 };
myArr7.SetValue( "one-two-three-zero-one-two-three", myIndices );
Console.WriteLine( "[1,2,3,0,1,2,3]: {0}", myArr7.GetValue( myIndices ) );
}
}
/*
This code produces the following output.
[3]: three
[1,3]: one-three
[1,2,3]: one-two-three
[1,2,3,0,1,2,3]: one-two-three-zero-one-two-three
*/
open System
// Creates and initializes a one-dimensional array.
let myArr1 = Array.zeroCreate<string> 5
// Sets the element at index 3.
myArr1.SetValue("three", 3)
printfn $"[3]: {myArr1.GetValue 3}"
// Creates and initializes a two-dimensional array.
let myArr2 = Array2D.zeroCreate<string> 5 5
// Sets the element at index 1,3.
myArr2.SetValue("one-three", 1, 3)
printfn $"[1,3]: {myArr2.GetValue(1, 3)}"
// Creates and initializes a three-dimensional array.
let myArr3 = Array3D.zeroCreate<string> 5 5 5
// Sets the element at index 1,2,3.
myArr3.SetValue("one-two-three", 1, 2, 3)
printfn $"[1,2,3]: {myArr3.GetValue(1, 2, 3)}"
// Creates and initializes a seven-dimensional array.
let myArr7 = Array.CreateInstance(typeof<string>, 5, 5, 5, 5, 5, 5, 5)
// Sets the element at index 1,2,3,0,1,2,3.
let myIndices = [| 1; 2; 3; 0; 1; 2; 3 |]
myArr7.SetValue("one-two-three-zero-one-two-three", myIndices)
printfn $"[1,2,3,0,1,2,3]: {myArr7.GetValue myIndices}"
// This code produces the following output.
// [3]: three
// [1,3]: one-three
// [1,2,3]: one-two-three
// [1,2,3,0,1,2,3]: one-two-three-zero-one-two-three
Public Class SamplesArray
Public Shared Sub Main()
' Creates and initializes a one-dimensional array.
Dim myArr1(4) As [String]
' Sets the element at index 3.
myArr1.SetValue("three", 3)
Console.WriteLine("[3]: {0}", myArr1.GetValue(3))
' Creates and initializes a two-dimensional array.
Dim myArr2(5, 5) As [String]
' Sets the element at index 1,3.
myArr2.SetValue("one-three", 1, 3)
Console.WriteLine("[1,3]: {0}", myArr2.GetValue(1, 3))
' Creates and initializes a three-dimensional array.
Dim myArr3(5, 5, 5) As [String]
' Sets the element at index 1,2,3.
myArr3.SetValue("one-two-three", 1, 2, 3)
Console.WriteLine("[1,2,3]: {0}", myArr3.GetValue(1, 2, 3))
' Creates and initializes a seven-dimensional array.
Dim myArr7(5, 5, 5, 5, 5, 5, 5) As [String]
' Sets the element at index 1,2,3,0,1,2,3.
Dim myIndices() As Integer = {1, 2, 3, 0, 1, 2, 3}
myArr7.SetValue("one-two-three-zero-one-two-three", myIndices)
Console.WriteLine("[1,2,3,0,1,2,3]: {0}", myArr7.GetValue(myIndices))
End Sub
End Class
'This code produces the following output.
'
'[3]: three
'[1,3]: one-three
'[1,2,3]: one-two-three
'[1,2,3,0,1,2,3]: one-two-three-zero-one-two-three
GetValue(Int32)
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
获取一维 Array中指定位置处的值。 索引指定为 32 位整数。
public:
System::Object ^ GetValue(int index);
public object GetValue(int index);
public object? GetValue(int index);
member this.GetValue : int -> obj
Public Function GetValue (index As Integer) As Object
参数
返回
一维 Array中指定位置处的值。
例外
当前 Array 没有完全相同的一个维度。
index 超出当前 Array有效索引的范围。
注解
和GetLowerBoundGetUpperBound方法可以确定其index值是否超出边界。
此方法是 O(1) 操作。
另请参阅
适用于
GetValue(Int32[])
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
获取位于多维 Array中指定位置的值。 索引指定为 32 位整数数组。
public:
System::Object ^ GetValue(... cli::array <int> ^ indices);
public object GetValue(params int[] indices);
public object? GetValue(params int[] indices);
member this.GetValue : int[] -> obj
Public Function GetValue (ParamArray indices As Integer()) As Object
参数
返回
在多维 Array位置处的值。
例外
indices 是 null。
当前 Array 中维度的数目不等于其中 indices元素的数目。
任何 indices 元素都超出了当前 Array相应维度的有效索引范围。
注解
中的 indices 元素数必须与维度 Array的数目相等。 数组中的所有 indices 元素必须统一指定所需元素在多维 Array中的位置。
和GetLowerBoundGetUpperBound方法可以确定任何索引是否超出边界。
此方法是 O(1) 操作。
另请参阅
适用于
GetValue(Int64)
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
获取一维 Array中指定位置处的值。 索引指定为 64 位整数。
public:
System::Object ^ GetValue(long index);
public object? GetValue(long index);
public object GetValue(long index);
[System.Runtime.InteropServices.ComVisible(false)]
public object GetValue(long index);
member this.GetValue : int64 -> obj
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.GetValue : int64 -> obj
Public Function GetValue (index As Long) As Object
参数
返回
一维 Array中指定位置处的值。
- 属性
例外
当前 Array 没有完全相同的一个维度。
index 超出当前 Array有效索引的范围。
注解
和GetLowerBoundGetUpperBound方法可以确定其index值是否超出边界。
此方法是 O(1) 操作。
另请参阅
适用于
GetValue(Int64[])
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
获取位于多维 Array中指定位置的值。 索引指定为 64 位整数的数组。
public:
System::Object ^ GetValue(... cli::array <long> ^ indices);
public object? GetValue(params long[] indices);
public object GetValue(params long[] indices);
[System.Runtime.InteropServices.ComVisible(false)]
public object GetValue(params long[] indices);
member this.GetValue : int64[] -> obj
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.GetValue : int64[] -> obj
Public Function GetValue (ParamArray indices As Long()) As Object
参数
返回
在多维 Array位置处的值。
- 属性
例外
indices 是 null。
当前 Array 中维度的数目不等于其中 indices元素的数目。
任何 indices 元素都超出了当前 Array相应维度的有效索引范围。
注解
中的 indices 元素数必须与维度 Array的数目相等。 数组中的所有 indices 元素必须统一指定所需元素在多维 Array中的位置。
和GetLowerBoundGetUpperBound方法可以确定任何索引是否超出边界。
此方法是 O(1) 操作。
另请参阅
适用于
GetValue(Int32, Int32)
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
获取二维 Array中指定位置处的值。 索引指定为 32 位整数。
public:
System::Object ^ GetValue(int index1, int index2);
public object? GetValue(int index1, int index2);
public object GetValue(int index1, int index2);
member this.GetValue : int * int -> obj
Public Function GetValue (index1 As Integer, index2 As Integer) As Object
参数
返回
二维 Array中指定位置处的值。
例外
当前 Array 没有完全相同的两个维度。
index1或index2超出当前Array相应维度的有效索引范围。
注解
和GetLowerBoundGetUpperBound方法可以确定任何索引是否超出边界。
此方法是 O(1) 操作。
另请参阅
适用于
GetValue(Int64, Int64)
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
获取二维 Array中指定位置处的值。 索引指定为 64 位整数。
public:
System::Object ^ GetValue(long index1, long index2);
public object? GetValue(long index1, long index2);
public object GetValue(long index1, long index2);
[System.Runtime.InteropServices.ComVisible(false)]
public object GetValue(long index1, long index2);
member this.GetValue : int64 * int64 -> obj
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.GetValue : int64 * int64 -> obj
Public Function GetValue (index1 As Long, index2 As Long) As Object
参数
返回
二维 Array中指定位置处的值。
- 属性
例外
当前 Array 没有完全相同的两个维度。
index1或index2超出当前Array相应维度的有效索引范围。
注解
和GetLowerBoundGetUpperBound方法可以确定任何索引是否超出边界。
此方法是 O(1) 操作。
另请参阅
适用于
GetValue(Int32, Int32, Int32)
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
获取三维 Array中指定位置处的值。 索引指定为 32 位整数。
public:
System::Object ^ GetValue(int index1, int index2, int index3);
public object? GetValue(int index1, int index2, int index3);
public object GetValue(int index1, int index2, int index3);
member this.GetValue : int * int * int -> obj
Public Function GetValue (index1 As Integer, index2 As Integer, index3 As Integer) As Object
参数
返回
三维 Array中指定位置处的值。
例外
当前 Array 没有完全三个维度。
index1或index2index3超出当前Array相应维度的有效索引范围。
注解
和GetLowerBoundGetUpperBound方法可以确定任何索引是否超出边界。
此方法是 O(1) 操作。
另请参阅
适用于
GetValue(Int64, Int64, Int64)
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
- Source:
- Array.cs
获取三维 Array中指定位置处的值。 索引指定为 64 位整数。
public:
System::Object ^ GetValue(long index1, long index2, long index3);
public object? GetValue(long index1, long index2, long index3);
public object GetValue(long index1, long index2, long index3);
[System.Runtime.InteropServices.ComVisible(false)]
public object GetValue(long index1, long index2, long index3);
member this.GetValue : int64 * int64 * int64 -> obj
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.GetValue : int64 * int64 * int64 -> obj
Public Function GetValue (index1 As Long, index2 As Long, index3 As Long) As Object
参数
返回
三维 Array中指定位置处的值。
- 属性
例外
当前 Array 没有完全三个维度。
index1或index2index3超出当前Array相应维度的有效索引范围。
注解
和GetLowerBoundGetUpperBound方法可以确定任何索引是否超出边界。
此方法是 O(1) 操作。