24

来源:互联网 发布:mysql从入门到精通 编辑:程序博客网 时间:2024/05/01 04:24
package com.haizhitao.annotation;public class DeprecatedTest{@Deprecatedpublic void doSomething(){System.out.println("do something!");}public static void main(String[] args){DeprecatedTest dep = new DeprecatedTest();dep.doSomething();}}