package Test;
public class Test {
@Deprecated
public void oldMethod () {
//过时方法示例
}
public void newMethod() {
//正常方法
}
public static void main(String[] args) {
Test test = new Test();
test.oldMethod(); //旧方法会显示删除线,提示方法已过时,但不影响正常使用
test.newMethod();
}
}
IDE中显示效果: