annotation - Deprecated
package com.annotation; public class DeprecatedTest { /** * * Depretcated: 当前方法不建议使用, 在未来可能会出现变化, 但目前可以使用. * */ @Deprecated public void test() { System.out.println("不建议使用本方法"); } public static void main(String[] args) { DeprecatedTest deprecatedTest = new DeprecatedTest(); deprecatedTest.test(); } }