例如:Java内在的File类中有如下方法
@Deprecated
public URL toURL() throws MalformedURLException {
return new URL("file", "", slashify(getAbsolutePath(), isDirectory()));
}
其中“@Deprecated”意在-----这个方法或类不再建议使用。在新版本中有其他方法或类可以代替这个使用,以后的版本也不会再更新这个方法或类
今天试了一下,只要在方法上面加上这个,方法名中间多了划线
public URL toURL() throws MalformedURLException
很爽