⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 deprecation.java

📁 是一款用JAVA 编写的编译器 具有很强的编译功能
💻 JAVA
字号:
/** * @test  /nodynamiccopyright/ * @bug 4986256 * @compile/ref=Deprecation.noLint.out -XDstdout                             -XDrawDiagnostics Deprecation.java * @compile/ref=Deprecation.lintDeprecation.out -XDstdout -Xlint:deprecation -XDrawDiagnostics Deprecation.java * @compile/ref=Deprecation.lintAll.out -XDstdout         -Xlint:all,-path   -XDrawDiagnostics Deprecation.java */@Deprecatedclass Deprecation{}// control: this class should generate warningsclass Deprecation2 {    void m() {	Object d = new Deprecation();    }}// tests: the warnings that would otherwise be generated should all be suppressed@SuppressWarnings("deprecation")class Deprecation3 {    void m() {	Object d = new Deprecation();    }}class Deprecation4{    @SuppressWarnings("deprecation")    void m() {	Object d = new Deprecation();    }}class Deprecation5{    void m() {        @SuppressWarnings("deprecation")	    class Inner {		void m() {		    Object d = new Deprecation();		}	    }    }}// this class should produce warnings because @SuppressWarnings should not be inheritedclass Deprecation6 extends Deprecation3{    void m() {	Object d = new Deprecation();    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -