Type.IsInstanceOfType(Object) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Określa, czy określony obiekt jest wystąpieniem bieżącego Type obiektu .
public:
virtual bool IsInstanceOfType(System::Object ^ o);
public virtual bool IsInstanceOfType (object? o);
public virtual bool IsInstanceOfType (object o);
abstract member IsInstanceOfType : obj -> bool
override this.IsInstanceOfType : obj -> bool
Public Overridable Function IsInstanceOfType (o As Object) As Boolean
Parametry
- o
- Object
Obiekt do porównania z bieżącym typem.
Zwraca
true
Jeśli bieżący znajduje się w hierarchii dziedziczenia obiektu reprezentowanego przez , lub jeśli bieżący jest Type
o
Type
interfejsem, który o
implementuje. false
Jeśli żaden z tych warunków nie ma przypadku, jeśli wartość to , lub jeśli bieżąca wartość jest otwartym typem o
null
ogólnym Type
(czyli zwraca wartość ContainsGenericParameters true
).
Implementuje
Przykłady
W poniższym przykładzie pokazano użycie IsInstanceOfType
metody .
using namespace System;
public interface class IExample{};
public ref class BaseClass: IExample{};
public ref class DerivedClass: BaseClass{};
void main()
{
Type^ interfaceType = IExample::typeid;
BaseClass^ base1 = gcnew BaseClass;
Type^ base1Type = base1->GetType();
BaseClass^ derived1 = gcnew DerivedClass;
Type^ derived1Type = derived1->GetType();
array<Int32>^ arr = gcnew array<Int32>(11);
Type^ arrayType = Array::typeid;
Console::WriteLine("Is Int32[] an instance of the Array class? {0}.",
arrayType->IsInstanceOfType( arr ) );
Console::WriteLine("Is myclass an instance of BaseClass? {0}.",
base1Type->IsInstanceOfType( base1 ) );
Console::WriteLine("Is myderivedclass an instance of BaseClass? {0}.",
base1Type->IsInstanceOfType( derived1 ) );
Console::WriteLine("Is myclass an instance of IExample? {0}.",
interfaceType->IsInstanceOfType( base1 ) );
Console::WriteLine("Is myderivedclass an instance of IExample? {0}.",
interfaceType->IsInstanceOfType( derived1 ) );
}
// The example displays the following output:
// Is int[] an instance of the Array class? True.
// Is base1 an instance of BaseClass? True.
// Is derived1 an instance of BaseClass? True.
// Is base1 an instance of IExample? True.
// Is derived1 an instance of IExample? True.
using System;
public interface IExample {}
public class BaseClass : IExample {}
public class DerivedClass : BaseClass {}
public class Example
{
public static void Main()
{
var interfaceType = typeof(IExample);
var base1 = new BaseClass();
var base1Type = base1.GetType();
var derived1 = new DerivedClass();
var derived1Type = derived1.GetType();
int[] arr = new int[11];
Console.WriteLine("Is int[] an instance of the Array class? {0}.",
typeof(Array).IsInstanceOfType(arr));
Console.WriteLine("Is base1 an instance of BaseClass? {0}.",
base1Type.IsInstanceOfType(base1));
Console.WriteLine("Is derived1 an instance of BaseClass? {0}.",
base1Type.IsInstanceOfType(derived1));
Console.WriteLine("Is base1 an instance of IExample? {0}.",
interfaceType.IsInstanceOfType(base1));
Console.WriteLine("Is derived1 an instance of IExample? {0}.",
interfaceType.IsInstanceOfType(derived1));
}
}
// The example displays the following output:
// Is int[] an instance of the Array class? True.
// Is base1 an instance of BaseClass? True.
// Is derived1 an instance of BaseClass? True.
// Is base1 an instance of IExample? True.
// Is derived1 an instance of IExample? True.
Public Interface IExample
End Interface
Public Class BaseClass : Implements IExample
End Class
Public Class DerivedClass : Inherits BaseClass
End Class
Public Module Example
Public Sub Main()
Dim interfaceType As Type = GetType(IExample)
Dim base1 As New BaseClass()
Dim base1Type As Type = base1.GetType()
Dim derived1 = New DerivedClass()
Dim derived1Type As Type = derived1.GetType()
Dim arr(10) As Integer
Console.WriteLine("Is int[] an instance of the Array class? {0}.",
GetType(Array).IsInstanceOfType(arr))
Console.WriteLine("Is base1 an instance of BaseClass? {0}.",
base1Type.IsInstanceOfType(base1))
Console.WriteLine("Is derived1 an instance of BaseClass? {0}.",
base1Type.IsInstanceOfType(derived1))
Console.WriteLine("Is base1 an instance of IExample? {0}.",
interfaceType.IsInstanceOfType(base1))
Console.WriteLine("Is derived1 an instance of IExample? {0}.",
interfaceType.IsInstanceOfType(derived1))
End Sub
End Module
' The example displays the following output:
' Is int[] an instance of the Array class? True.
' Is base1 an instance of BaseClass? True.
' Is derived1 an instance of BaseClass? True.
' Is base1 an instance of IExample? True.
' Is derived1 an instance of IExample? True.
Uwagi
Metoda ta może być zastąpiona przez klasę pochodną.
Uwaga
Skonstruowany typ nie jest wystąpieniem jego definicji typu ogólnego. Oznacza to, MyGenericList<int>
że ( MyGenericList(Of Integer)
w Visual Basic) nie jest wystąpieniem MyGenericList<T>
( w MyGenericList(Of T)
Visual Basic).