Array.GetValue Méthode

Définition

Obtient la valeur de l’élément spécifié dans le Array en cours.

Surcharges

GetValue(Int32)

Obtient la valeur à la position spécifiée de l’Array unidimensionnel. L'index est spécifié en tant qu'entier 32 bits.

GetValue(Int32[])

Obtient la valeur à la position spécifiée du Array multidimensionnel. Les index sont spécifiés sous la forme d'un tableau d'entiers 32 bits.

GetValue(Int64)

Obtient la valeur à la position spécifiée de l’Array unidimensionnel. L'index est spécifié en tant qu'entier 64 bits.

GetValue(Int64[])

Obtient la valeur à la position spécifiée du Array multidimensionnel. Les index sont spécifiés sous la forme d'un tableau d'entiers 64 bits.

GetValue(Int32, Int32)

Obtient la valeur à la position spécifiée du Array à deux dimensions. Les index sont spécifiés en tant qu’entiers 32 bits.

GetValue(Int64, Int64)

Obtient la valeur à la position spécifiée du Array à deux dimensions. Les index sont spécifiés en tant qu'entiers 64 bits.

GetValue(Int32, Int32, Int32)

Obtient la valeur à la position spécifiée du Array à trois dimensions. Les index sont spécifiés en tant qu’entiers 32 bits.

GetValue(Int64, Int64, Int64)

Obtient la valeur à la position spécifiée du Array à trois dimensions. Les index sont spécifiés en tant qu'entiers 64 bits.

Exemples

L’exemple de code suivant montre comment définir et obtenir une valeur spécifique dans un tableau unidimensionnel ou multidimensionnel.

using namespace System;
int main()
{
   
   // Creates and initializes a one-dimensional array.
   array<String^>^myArr1 = gcnew array<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.
   array<String^, 2>^myArr2 = gcnew array<String^,2>(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.
   array<String^, 3>^myArr3 = gcnew array<String^,3>(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.
   array<String^, 7>^myArr7 = gcnew array<String^,7>(5,5,5,5,5,5,5);
   
   // Sets the element at index 1,2,3,0,1,2,3.
   array<Int32>^myIndices = {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

*/
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)

Obtient la valeur à la position spécifiée de l’Array unidimensionnel. L'index est spécifié en tant qu'entier 32 bits.

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

Paramètres

index
Int32

Entier 32 bits qui représente la position de l’élément Array à obtenir.

Retours

Object

Valeur à la position spécifiée de l’Array unidimensionnel.

Exceptions

Le Array actuel ne possède pas exactement une dimension.

index est en dehors de la plage d’index valides pour le Array actuel.

Remarques

Les GetLowerBound méthodes et GetUpperBound les méthodes peuvent déterminer si la valeur d’est index hors limites.

Cette méthode est une opération O(1).

Voir aussi

S’applique à

GetValue(Int32[])

Obtient la valeur à la position spécifiée du Array multidimensionnel. Les index sont spécifiés sous la forme d'un tableau d'entiers 32 bits.

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

Paramètres

indices
Int32[]

Tableau unidimensionnel d’entiers 32 bits qui représentent les index spécifiant la position de l’élément Array à obtenir.

Retours

Object

Valeur à la position spécifiée dans le Array multidimensionnel.

Exceptions

indices a la valeur null.

Le nombre de dimensions dans l’Array actuel n’est pas égal au nombre d’éléments dans indices.

Tout élément dans indices est en dehors de la plage d’index valides pour la dimension correspondante du Array actuel.

Remarques

Le nombre d’éléments dans indices doit être égal au nombre de dimensions dans le Array. Tous les éléments du indices tableau doivent spécifier collectivement la position de l’élément souhaité dans le multidimensionnel Array.

Les GetLowerBound méthodes et GetUpperBound les méthodes peuvent déterminer si l’un des index est hors limites.

Cette méthode est une opération O(1).

Voir aussi

S’applique à

GetValue(Int64)

Obtient la valeur à la position spécifiée de l’Array unidimensionnel. L'index est spécifié en tant qu'entier 64 bits.

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

Paramètres

index
Int64

Entier 64 bits qui représente la position de l’élément Array à obtenir.

Retours

Object

Valeur à la position spécifiée de l’Array unidimensionnel.

Attributs

Exceptions

Le Array actuel ne possède pas exactement une dimension.

index est en dehors de la plage d’index valides pour le Array actuel.

Remarques

Les GetLowerBound méthodes et GetUpperBound les méthodes peuvent déterminer si la valeur d’est index hors limites.

Cette méthode est une opération O(1).

Voir aussi

S’applique à

GetValue(Int64[])

Obtient la valeur à la position spécifiée du Array multidimensionnel. Les index sont spécifiés sous la forme d'un tableau d'entiers 64 bits.

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

Paramètres

indices
Int64[]

Tableau unidimensionnel d’entiers 64 bits qui représentent les index spécifiant la position de l’élément Array à obtenir.

Retours

Object

Valeur à la position spécifiée dans le Array multidimensionnel.

Attributs

Exceptions

indices a la valeur null.

Le nombre de dimensions dans l’Array actuel n’est pas égal au nombre d’éléments dans indices.

Tout élément dans indices est en dehors de la plage d’index valides pour la dimension correspondante du Array actuel.

Remarques

Le nombre d’éléments dans indices doit être égal au nombre de dimensions dans le Array. Tous les éléments du indices tableau doivent spécifier collectivement la position de l’élément souhaité dans le multidimensionnel Array.

Les GetLowerBound méthodes et GetUpperBound les méthodes peuvent déterminer si l’un des index est hors limites.

Cette méthode est une opération O(1).

Voir aussi

S’applique à

GetValue(Int32, Int32)

Obtient la valeur à la position spécifiée du Array à deux dimensions. Les index sont spécifiés en tant qu’entiers 32 bits.

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

Paramètres

index1
Int32

Entier 32 bits qui représente l’index de la première dimension de l’élément Array à obtenir.

index2
Int32

Entier 32 bits qui représente l’index de la deuxième dimension de l’élément Array à obtenir.

Retours

Object

Valeur à la position spécifiée du Array à deux dimensions.

Exceptions

Le Array actuel ne possède pas exactement deux dimensions.

index1 ou index2 est en dehors de la plage d’index valides pour la dimension correspondante du Array actuel.

Remarques

Les GetLowerBound méthodes et GetUpperBound les méthodes peuvent déterminer si l’un des index est hors limites.

Cette méthode est une opération O(1).

Voir aussi

S’applique à

GetValue(Int64, Int64)

Obtient la valeur à la position spécifiée du Array à deux dimensions. Les index sont spécifiés en tant qu'entiers 64 bits.

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

Paramètres

index1
Int64

Entier 64 bits qui représente l’index de la première dimension de l’élément Array à obtenir.

index2
Int64

Entier 64 bits qui représente l’index de la deuxième dimension de l’élément Array à obtenir.

Retours

Object

Valeur à la position spécifiée du Array à deux dimensions.

Attributs

Exceptions

Le Array actuel ne possède pas exactement deux dimensions.

index1 ou index2 est en dehors de la plage d’index valides pour la dimension correspondante du Array actuel.

Remarques

Les GetLowerBound méthodes et GetUpperBound les méthodes peuvent déterminer si l’un des index est hors limites.

Cette méthode est une opération O(1).

Voir aussi

S’applique à

GetValue(Int32, Int32, Int32)

Obtient la valeur à la position spécifiée du Array à trois dimensions. Les index sont spécifiés en tant qu’entiers 32 bits.

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

Paramètres

index1
Int32

Entier 32 bits qui représente l’index de la première dimension de l’élément Array à obtenir.

index2
Int32

Entier 32 bits qui représente l’index de la deuxième dimension de l’élément Array à obtenir.

index3
Int32

Entier 32 bits qui représente l’index de la troisième dimension de l’élément Array à obtenir.

Retours

Object

Valeur à la position spécifiée du Array à trois dimensions.

Exceptions

Le Array actuel ne possède pas exactement trois dimensions.

index1 ou index2 ou index3 est en dehors de la plage d’index valides pour la dimension correspondante du Array actuel.

Remarques

Les GetLowerBound méthodes et GetUpperBound les méthodes peuvent déterminer si l’un des index est hors limites.

Cette méthode est une opération O(1).

Voir aussi

S’applique à

GetValue(Int64, Int64, Int64)

Obtient la valeur à la position spécifiée du Array à trois dimensions. Les index sont spécifiés en tant qu'entiers 64 bits.

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

Paramètres

index1
Int64

Entier 64 bits qui représente l’index de la première dimension de l’élément Array à obtenir.

index2
Int64

Entier 64 bits qui représente l’index de la deuxième dimension de l’élément Array à obtenir.

index3
Int64

Entier 64 bits qui représente l’index de la troisième dimension de l’élément Array à obtenir.

Retours

Object

Valeur à la position spécifiée du Array à trois dimensions.

Attributs

Exceptions

Le Array actuel ne possède pas exactement trois dimensions.

index1 ou index2 ou index3 est en dehors de la plage d’index valides pour la dimension correspondante du Array actuel.

Remarques

Les méthodes et GetUpperBound les GetLowerBound méthodes peuvent déterminer si l’un des index est hors limites.

Cette méthode est une opération O(1).

Voir aussi

S’applique à