为什么 inheritedDoc 没有在构造函数上定义?[已关闭]
2022-09-02 12:04:48
我想知道javadoc不支持transheatedDoc的任何有效理由。假设我有constructors
class A
{
/**
* Constructor of A
*/
A(){}
/**
* Does something
*/
public void method(){}
}
class B extends A
{
/**
* {@inheritDoc}
*/
B(){ super();}
/**
* {@inheritDoc}
*/
public void method(){}
}
对于方法,我可以继承javadoc,但是为什么不能应用相同的方法?除非我使用 inheritDoc 标签,否则 javadoc 不会被继承,这意味着我很清楚我想要重用文档。什么应该阻止我这样做?method
constructors
constructors