Type.IsSubclassOf(Type) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
public:
virtual bool IsSubclassOf(Type ^ c);
public virtual bool IsSubclassOf(Type c);
[System.Runtime.InteropServices.ComVisible(true)]
public virtual bool IsSubclassOf(Type c);
abstract member IsSubclassOf : Type -> bool
override this.IsSubclassOf : Type -> bool
[<System.Runtime.InteropServices.ComVisible(true)>]
abstract member IsSubclassOf : Type -> bool
override this.IsSubclassOf : Type -> bool
Public Overridable Function IsSubclassOf (c As Type) As Boolean
Parametreler
- c
- Type
Geçerli türle karşılaştıracak tür.
Döndürülenler
true geçerli Type öğesinin türetilirse c, değilse, false. Bu yöntem, eğer ve geçerli false eşitse c de döndürürType.
Uygulamalar
- Öznitelikler
Özel durumlar
c, null'e eşittir.
Örnekler
Aşağıdaki örnek adlı bir sınıf ve adlı Class1DerivedC1türetilmiş bir sınıf oluşturur. öğesinin IsSubclassOf alt sınıfı DerivedC1olduğunu Class1 göstermek için yöntemini çağırır.
using System;
public class Class1 { }
public class DerivedC1 : Class1 { }
class IsSubclassTest
{
public static void Main()
{
Console.WriteLine("DerivedC1 subclass of Class1: {0}",
typeof(DerivedC1).IsSubclassOf(typeof(Class1)));
}
}
// The example displays the following output:
// DerivedC1 subclass of Class1: True
type Class1() = class end
type DerivedC1() = inherit Class1()
printfn $"DerivedC1 subclass of Class1: {typeof<DerivedC1>.IsSubclassOf typeof<Class1>}"
// The example displays the following output:
// DerivedC1 subclass of Class1: True
Public Class Class1
End Class
Public Class DerivedC1 : Inherits Class1
End Class
Public Module Example
Public Sub Main()
Console.WriteLine("DerivedC1 subclass of Class1: {0}",
GetType(DerivedC1).IsSubClassOf(GetType(Class1)))
End Sub
End Module
' The example displays the following output:
' DerivedC1 subclass of Class1: True
Açıklamalar
Aşağıdakilerden herhangi birini belirlemek için yöntemini çağırabilirsiniz IsSubclassOf :
Bir sınıfın başka bir sınıftan türetilip türemeyeceği.
Bir türün türünden ValueTypetüretilip türetilip türemediğini belirleyin. Ancak, IsValueType türün bir değer türü olup olmadığını saptamak için daha verimli bir yoldur.
Bir türün türünden Enumtüretilip türetilip türemediğini belirleyin. Ancak yöntemi, bir türün IsEnum numaralandırma olup olmadığını saptamak için daha verimli bir yoldur.
Bir türün temsilci olup olmadığı, diğer bir ifadeyle veya Delegatetüründen MulticastDelegate türetilip türetilmediği.
yöntemi, bir arabirimin IsSubclassOf başka bir arabirimden türetilip türetilmediğini veya bir sınıfın arabirim uygulayıp uygulamadığını belirlemek için kullanılamaz. IsAssignableFrom Aşağıdaki örnekte gösterildiği gibi yöntemini bu amaç için kullanın.
using System;
public interface IInterface
{
void Display();
}
public class Implementation : IInterface
{
public void Display()
{
Console.WriteLine("The implementation...");
}
}
public class Example
{
public static void Main()
{
Console.WriteLine("Implementation is a subclass of IInterface: {0}",
typeof(Implementation).IsSubclassOf(typeof(IInterface)));
Console.WriteLine("IInterface is assignable from Implementation: {0}",
typeof(IInterface).IsAssignableFrom(typeof(Implementation)));
}
}
// The example displays the following output:
// Implementation is a subclass of IInterface: False
// IInterface is assignable from Implementation: True
type IInterface =
abstract Display : unit -> unit
type Implementation() =
interface IInterface with
member _.Display() = printfn "The implementation..."
printfn $"Implementation is a subclass of IInterface: {typeof<Implementation>.IsSubclassOf typeof<IInterface>}"
printfn $"IInterface is assignable from Implementation: {typeof<IInterface>.IsAssignableFrom typeof<Implementation>}"
// The example displays the following output:
// Implementation is a subclass of IInterface: False
// IInterface is assignable from Implementation: True
Public Interface IInterface
Sub Display()
End Interface
Public Class Implementation : Implements IInterface
Public Sub Display() _
Implements IInterface.Display
Console.WriteLine("The implementation...")
End Sub
End Class
Module Example
Public Sub Main()
Console.WriteLine("Implementation is a subclass of IInterface: {0}",
GetType(Implementation).IsSubclassOf(GetType(IInterface)))
Console.WriteLine("IInterface is assignable from Implementation: {0}",
GetType(IInterface).IsAssignableFrom(GetType(Implementation)))
End Sub
End Module
' The example displays the following output:
' Implementation is a subclass of IInterface: False
' IInterface is assignable from Implementation: True
Geçerli Type , genel bir türün veya genel yöntemin tanımında tür parametresini temsil ederse, sınıf kısıtlamasından veya sınıf kısıtlaması yoksa öğesinden System.Object türetilir.
Note
Arabirimlerle kullanıldığı durumlar dışında, IsSubclassOf öğesinin IsAssignableFromtersidir. Yani, ise t1.IsSubclassOf(t2)true, aynı zamanda t2.IsAssignableFrom(t1)trueolur.
Bu yöntem türetilmiş bir sınıf tarafından geçersiz kılınabilir.