Array.GetValue メソッド

定義

現在の Array内の指定した要素の値を取得します。

オーバーロード

名前 説明
GetValue(Int32)

1 次元 Array内の指定した位置にある値を取得します。 インデックスは 32 ビット整数として指定されます。

GetValue(Int32[])

多次元 Array内の指定した位置にある値を取得します。 インデックスは、32 ビット整数の配列として指定されます。

GetValue(Int64)

1 次元 Array内の指定した位置にある値を取得します。 インデックスは 64 ビット整数として指定されます。

GetValue(Int64[])

多次元 Array内の指定した位置にある値を取得します。 インデックスは、64 ビット整数の配列として指定されます。

GetValue(Int32, Int32)

2 次元 Array内の指定した位置にある値を取得します。 インデックスは 32 ビット整数として指定されます。

GetValue(Int64, Int64)

2 次元 Array内の指定した位置にある値を取得します。 インデックスは 64 ビット整数として指定されます。

GetValue(Int32, Int32, Int32)

3 次元 Array内の指定した位置にある値を取得します。 インデックスは 32 ビット整数として指定されます。

GetValue(Int64, Int64, Int64)

3 次元 Array内の指定した位置にある値を取得します。 インデックスは 64 ビット整数として指定されます。

次のコード例は、1 次元配列または多次元配列で特定の値を設定および取得する方法を示しています。

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)

ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs

1 次元 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

パラメーター

index
Int32

取得する Array 要素の位置を表す 32 ビット整数。

返品

1 次元 Array内の指定した位置にある値。

例外

現在の Array には、1 つのディメンションがありません。

index は、現在の Arrayの有効なインデックスの範囲外です。

注釈

GetLowerBoundメソッドとGetUpperBoundメソッドは、indexの値が範囲外かどうかを判断できます。

このメソッドは O(1) 操作です。

こちらもご覧ください

適用対象

GetValue(Int32[])

ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
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

パラメーター

indices
Int32[]

取得する Array 要素の位置を指定するインデックスを表す 32 ビット整数の 1 次元配列。

返品

多次元 Array内の指定した位置にある値。

例外

indicesnullです。

現在の Array 内の次元の数が、 indices内の要素の数と等しくありません。

indices内のすべての要素が、現在のArrayの対応するディメンションの有効なインデックスの範囲外です。

注釈

indices内の要素の数は、Array内の次元の数と等しい必要があります。 indices配列内のすべての要素は、多次元Array内の目的の要素の位置をまとめて指定する必要があります。

GetLowerBoundメソッドと GetUpperBound メソッドは、いずれかのインデックスが範囲外かどうかを判断できます。

このメソッドは O(1) 操作です。

こちらもご覧ください

適用対象

GetValue(Int64)

ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs

1 次元 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

パラメーター

index
Int64

取得する Array 要素の位置を表す 64 ビット整数。

返品

1 次元 Array内の指定した位置にある値。

属性

例外

現在の Array には、1 つのディメンションがありません。

index は、現在の Arrayの有効なインデックスの範囲外です。

注釈

GetLowerBoundメソッドとGetUpperBoundメソッドは、indexの値が範囲外かどうかを判断できます。

このメソッドは O(1) 操作です。

こちらもご覧ください

適用対象

GetValue(Int64[])

ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
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

パラメーター

indices
Int64[]

取得する Array 要素の位置を指定するインデックスを表す 64 ビット整数の 1 次元配列。

返品

多次元 Array内の指定した位置にある値。

属性

例外

indicesnullです。

現在の Array 内の次元の数が、 indices内の要素の数と等しくありません。

indices内のすべての要素が、現在のArrayの対応するディメンションの有効なインデックスの範囲外です。

注釈

indices内の要素の数は、Array内の次元の数と等しい必要があります。 indices配列内のすべての要素は、多次元Array内の目的の要素の位置をまとめて指定する必要があります。

GetLowerBoundメソッドと GetUpperBound メソッドは、いずれかのインデックスが範囲外かどうかを判断できます。

このメソッドは O(1) 操作です。

こちらもご覧ください

適用対象

GetValue(Int32, Int32)

ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs

2 次元 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

パラメーター

index1
Int32

取得する Array 要素の最初の次元インデックスを表す 32 ビット整数。

index2
Int32

取得する Array 要素の 2 次元インデックスを表す 32 ビット整数。

返品

2 次元 Array内の指定した位置にある値。

例外

現在の Array には、正確に 2 つのディメンションがありません。

index1またはindex2が、現在のArrayの対応するディメンションの有効なインデックスの範囲外です。

注釈

GetLowerBoundメソッドと GetUpperBound メソッドは、いずれかのインデックスが範囲外かどうかを判断できます。

このメソッドは O(1) 操作です。

こちらもご覧ください

適用対象

GetValue(Int64, Int64)

ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs

2 次元 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

パラメーター

index1
Int64

取得する Array 要素の最初の次元インデックスを表す 64 ビット整数。

index2
Int64

取得する Array 要素の 2 次元インデックスを表す 64 ビット整数。

返品

2 次元 Array内の指定した位置にある値。

属性

例外

現在の Array には、正確に 2 つのディメンションがありません。

index1またはindex2が、現在のArrayの対応するディメンションの有効なインデックスの範囲外です。

注釈

GetLowerBoundメソッドと GetUpperBound メソッドは、いずれかのインデックスが範囲外かどうかを判断できます。

このメソッドは O(1) 操作です。

こちらもご覧ください

適用対象

GetValue(Int32, Int32, Int32)

ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs

3 次元 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

パラメーター

index1
Int32

取得する Array 要素の最初の次元インデックスを表す 32 ビット整数。

index2
Int32

取得する Array 要素の 2 次元インデックスを表す 32 ビット整数。

index3
Int32

取得する Array 要素の 3 次元インデックスを表す 32 ビット整数。

返品

3 次元 Array内の指定した位置にある値。

例外

現在の Array には、正確に 3 つのディメンションがありません。

index1 または index2 または index3 が、現在の Arrayの対応するディメンションの有効なインデックスの範囲外です。

注釈

GetLowerBoundメソッドと GetUpperBound メソッドは、いずれかのインデックスが範囲外かどうかを判断できます。

このメソッドは O(1) 操作です。

こちらもご覧ください

適用対象

GetValue(Int64, Int64, Int64)

ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs
ソース:
Array.cs

3 次元 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

パラメーター

index1
Int64

取得する Array 要素の最初の次元インデックスを表す 64 ビット整数。

index2
Int64

取得する Array 要素の 2 次元インデックスを表す 64 ビット整数。

index3
Int64

取得する Array 要素の 3 次元インデックスを表す 64 ビット整数。

返品

3 次元 Array内の指定した位置にある値。

属性

例外

現在の Array には、正確に 3 つのディメンションがありません。

index1 または index2 または index3 が、現在の Arrayの対応するディメンションの有効なインデックスの範囲外です。

注釈

GetLowerBoundメソッドと GetUpperBound メソッドは、いずれかのインデックスが範囲外かどうかを判断できます。

このメソッドは O(1) 操作です。

こちらもご覧ください

適用対象