Array.GetValue 메서드

정의

현재 Array에서 지정된 요소의 값을 가져옵니다.

오버로드

Name Description
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)

Source:
Array.cs
Source:
Array.cs
Source:
Array.cs
Source:
Array.cs
Source:
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

가져올 요소의 위치를 나타내는 32비트 정수 Array 입니다.

반품

1차원의 지정된 위치에 있는 값입니다 Array.

예외

현재 Array 에는 정확히 하나의 차원이 없습니다.

index 가 현재 Array인덱스의 유효한 범위를 벗어났습니다.

설명

GetLowerBound 메서드는 GetUpperBoundindex 이 범위를 벗어났는지 여부를 확인할 수 있습니다.

이 메서드는 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

매개 변수

indices
Int32[]

가져올 요소의 위치를 지정하는 인덱스를 나타내는 32비트 정수의 Array 1차원 배열입니다.

반품

다차원에서 지정된 위치에 있는 값입니다 Array.

예외

indicesnull입니다.

현재 Array 차원의 수가 .의 요소 indices수와 같지 않습니다.

모든 indices 요소가 현재 Array차원의 유효한 인덱스 범위를 벗어났습니다.

설명

요소 indices 의 수는 .의 차원 수와 Array같아야 합니다. 배열의 indices 모든 요소는 다차원 Array에서 원하는 요소의 위치를 집합적으로 지정해야 합니다.

GetLowerBound 메서드는 GetUpperBound 인덱스가 범위를 벗어났는지 여부를 확인할 수 있습니다.

이 메서드는 O(1) 작업입니다.

추가 정보

적용 대상

GetValue(Int64)

Source:
Array.cs
Source:
Array.cs
Source:
Array.cs
Source:
Array.cs
Source:
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

가져올 요소의 위치를 나타내는 64비트 정수 Array 입니다.

반품

1차원의 지정된 위치에 있는 값입니다 Array.

특성

예외

현재 Array 에는 정확히 하나의 차원이 없습니다.

index 가 현재 Array인덱스의 유효한 범위를 벗어났습니다.

설명

GetLowerBound 메서드는 GetUpperBoundindex 이 범위를 벗어났는지 여부를 확인할 수 있습니다.

이 메서드는 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

매개 변수

indices
Int64[]

가져올 요소의 위치를 지정하는 인덱스를 나타내는 64비트 정수의 Array 1차원 배열입니다.

반품

다차원에서 지정된 위치에 있는 값입니다 Array.

특성

예외

indicesnull입니다.

현재 Array 차원의 수가 .의 요소 indices수와 같지 않습니다.

모든 indices 요소가 현재 Array차원의 유효한 인덱스 범위를 벗어났습니다.

설명

요소 indices 의 수는 .의 차원 수와 Array같아야 합니다. 배열의 indices 모든 요소는 다차원 Array에서 원하는 요소의 위치를 집합적으로 지정해야 합니다.

GetLowerBound 메서드는 GetUpperBound 인덱스가 범위를 벗어났는지 여부를 확인할 수 있습니다.

이 메서드는 O(1) 작업입니다.

추가 정보

적용 대상

GetValue(Int32, Int32)

Source:
Array.cs
Source:
Array.cs
Source:
Array.cs
Source:
Array.cs
Source:
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 1차원 인덱스를 나타내는 32비트 정수입니다.

index2
Int32

가져올 요소의 Array 2차원 인덱스를 나타내는 32비트 정수입니다.

반품

2차원의 지정된 위치에 있는 값입니다 Array.

예외

현재 Array 에는 정확히 두 개의 차원이 없습니다.

index1 현재 index2차원의 유효한 인덱스 범위를 벗어났거나 Array 범위를 벗어났습니다.

설명

GetLowerBound 메서드는 GetUpperBound 인덱스가 범위를 벗어났는지 여부를 확인할 수 있습니다.

이 메서드는 O(1) 작업입니다.

추가 정보

적용 대상

GetValue(Int64, Int64)

Source:
Array.cs
Source:
Array.cs
Source:
Array.cs
Source:
Array.cs
Source:
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 1차원 인덱스를 나타내는 64비트 정수입니다.

index2
Int64

가져올 요소의 Array 2차원 인덱스를 나타내는 64비트 정수입니다.

반품

2차원의 지정된 위치에 있는 값입니다 Array.

특성

예외

현재 Array 에는 정확히 두 개의 차원이 없습니다.

index1 현재 index2차원의 유효한 인덱스 범위를 벗어났거나 Array 범위를 벗어났습니다.

설명

GetLowerBound 메서드는 GetUpperBound 인덱스가 범위를 벗어났는지 여부를 확인할 수 있습니다.

이 메서드는 O(1) 작업입니다.

추가 정보

적용 대상

GetValue(Int32, Int32, Int32)

Source:
Array.cs
Source:
Array.cs
Source:
Array.cs
Source:
Array.cs
Source:
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 1차원 인덱스를 나타내는 32비트 정수입니다.

index2
Int32

가져올 요소의 Array 2차원 인덱스를 나타내는 32비트 정수입니다.

index3
Int32

가져올 요소의 Array 3차원 인덱스를 나타내는 32비트 정수입니다.

반품

3차원의 지정된 위치에 있는 값입니다 Array.

예외

현재 Array 에는 정확히 세 개의 차원이 없습니다.

index1또는 index2 현재 index3차원의 유효한 인덱스 범위를 벗어났습니다Array.

설명

GetLowerBound 메서드는 GetUpperBound 인덱스가 범위를 벗어났는지 여부를 확인할 수 있습니다.

이 메서드는 O(1) 작업입니다.

추가 정보

적용 대상

GetValue(Int64, Int64, Int64)

Source:
Array.cs
Source:
Array.cs
Source:
Array.cs
Source:
Array.cs
Source:
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 1차원 인덱스를 나타내는 64비트 정수입니다.

index2
Int64

가져올 요소의 Array 2차원 인덱스를 나타내는 64비트 정수입니다.

index3
Int64

가져올 요소의 Array 3차원 인덱스를 나타내는 64비트 정수입니다.

반품

3차원의 지정된 위치에 있는 값입니다 Array.

특성

예외

현재 Array 에는 정확히 세 개의 차원이 없습니다.

index1또는 index2 현재 index3차원의 유효한 인덱스 범위를 벗어났습니다Array.

설명

GetLowerBound 메서드는 GetUpperBound 인덱스가 범위를 벗어났는지 여부를 확인할 수 있습니다.

이 메서드는 O(1) 작업입니다.

추가 정보

적용 대상