CodeClass2.IsAbstract Özellik
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.
Kod sınıfının soyut olarak bildirilip oluşturulmayacağını ayarlar veya alır.
public:
property bool IsAbstract { bool get(); void set(bool value); };
public:
property bool IsAbstract { bool get(); void set(bool value); };
[System.Runtime.InteropServices.DispId(62)]
public bool IsAbstract { [System.Runtime.InteropServices.DispId(62)] get; [System.Runtime.InteropServices.DispId(62)] set; }
[<System.Runtime.InteropServices.DispId(62)>]
[<get: System.Runtime.InteropServices.DispId(62)>]
[<set: System.Runtime.InteropServices.DispId(62)>]
member this.IsAbstract : bool with get, set
Public Property IsAbstract As Boolean
Özellik Değeri
trueKod sınıfı Özet olarak bildirilirse bir Boole değeri; false Aksi takdirde.
Uygulamalar
- Öznitelikler
Örnekler
[Visual Basic]
Sub IsAbstractExample(ByVal dte As DTE2)
' Before running this example, open a code document from a project
' and place the insertion point inside a class definition.
Try
' Retrieve the CodeClass at the insertion point.
Dim sel As TextSelection = _
CType(dte.ActiveDocument.Selection, TextSelection)
Dim cls As CodeClass = _
CType(sel.ActivePoint.CodeElement( _
vsCMElement.vsCMElementClass), CodeClass)
' Display whether the class is abstract.
If cls.IsAbstract Then
MsgBox(cls.Name & " is an abstract class.")
Else
MsgBox(cls.Name & " is not an abstract class.")
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
Þ
public void IsAbstractExample(DTE2 dte)
{
// Before running this example, open a code document from a project
// and place the insertion point inside a class definition.
try
{
// Retrieve the CodeClass at the insertion point.
TextSelection sel =
(TextSelection)dte.ActiveDocument.Selection;
CodeClass cls =
(CodeClass)sel.ActivePoint.get_CodeElement(
vsCMElement.vsCMElementClass);
// Display whether the class is abstract.
if (cls.IsAbstract)
MessageBox.Show(cls.Name + " is an abstract class.");
else
MessageBox.Show(cls.Name + " is not an abstract class.");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
Açıklamalar
IsAbstractÖzelliği, sınıfın şu anda soyut olarak göründüğünü veya sınıfın soyut yöntemler nedeniyle eksik olan yöntem uygulamalarını ekleyen bir alt sınıf gerektirip gerektirmediğini belirler. Bazı diller için bu durum her zaman olabilir false .
Not
Bir sınıf soyut olarak bildirilemez, ancak örtülü olarak soyut olabilir.
Ayrıca, sınıflar, yapılar, işlevler, öznitelikler, temsilciler vb. gibi kod modeli öğelerinin değerleri, belirli tür düzenlemeler yapıldıktan sonra belirleyici olmayan bir değer olabilir, yani değerlerinin her zaman aynı kalır. Daha fazla bilgi için bkz. kod modeli öğe değerleri, kod modeli kullanılarak kod bulma bölümünde değişebilir (Visual Basic).