Covariance de tableau
Publication: mars 2016
Compte tenu de la classe de référence D avec la classe base B directe ou indirecte, un tableau de type D peut être assigné à une variable tableau de type b.
// clr_array_covariance.cpp
// compile with: /clr
using namespace System;
int main() {
// String derives from Object
array<Object^>^ oa = gcnew array<String^>(20);
}
Notes
Une assignation à un élément de tableau doit être compatible avec l’assignation avec le type du tableau dynamique. Une assignation à un élément de tableau avec un type incompatible provoque System::ArrayTypeMismatchException levée.
Covariance de tableau ne s’applique pas aux tableaux de type de classe value. Par exemple, les tableaux de Int32 ne peut pas être convertis en objet ^ tableaux, même via une conversion boxing.
Exemple
// clr_array_covariance2.cpp
// compile with: /clr
using namespace System;
ref struct Base { int i; };
ref struct Derived : Base {};
ref struct Derived2 : Base {};
ref struct Derived3 : Derived {};
ref struct Other { short s; };
int main() {
// Derived* d[] = new Derived*[100];
array<Derived^> ^ d = gcnew array<Derived^>(100);
// ok by array covariance
array<Base ^> ^ b = d;
// invalid
// b[0] = new Other;
// error (runtime exception)
// b[1] = gcnew Derived2;
// error (runtime exception),
// must be "at least" a Derived.
// b[0] = gcnew Base;
b[1] = gcnew Derived;
b[0] = gcnew Derived3;
}