网站首页/技术开发列表/内容

to 退退:开发中如何让一个办法deprecated?

技术开发2022-05-08阅读
这是通过javadoc来做到的。
注意下面的@deprecated的用法

/**
 * Sets the name.
 * @param name The name to set
 * @deprecated don't use this method.
 */
public void setName(String name) {
this.name = name;
}

……

相关阅读