您好,登錄后才能下訂單哦!
.net 中用Obsolete屬性,每次使用被標記為已過時的實體時,隨后將生成警告或錯誤,這取決于屬性是如何配置的。
c#:
[System.Obsolete("use class B")] class A { public void Method() { } } class B { [System.Obsolete("use NewMethod", true)] public void OldMethod() { } public void NewMethod() { } } // Generates 2 warnings: A a = new A(); // Generate no errors or warnings: B b = new B(); b.NewMethod(); // Generates an error, terminating compilation: b.OldMethod();
為類 A 產生兩個警告:一個用于聲明類引用,一個用于類構造函數。
vb.net:
<System.Obsolete("use class B")> Class A Sub Method() End Sub End Class Class B <System.Obsolete("use NewMethod", True)> Sub OldMethod() End Sub Sub NewMethod() End Sub End Class ' Generates 2 warnings: ' Dim a As New A ' Generate no errors or warnings: Dim b As New B b.NewMethod() ' Generates an error, terminating compilation: ' b.OldMethod()
java中使用@Deprecated注解,標記已過時.
@Deprecated public void showTaste(){ System.out.println("水果的蘋果的口感是:脆甜"); }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。