我想知道 javadoc 不支持inheritedDoc on 是否有任何正当理由constructors
。假设我有
class A
{
/**
* Constructor of A
*/
A(){}
/**
* Does something
*/
public void method(){}
}
class B extends A
{
/**
* {@inheritDoc}
*/
B(){ super();}
/**
* {@inheritDoc}
*/
public void method(){}
}
对于方法method
,我可以继承javadoc,但为什么不能申请constructors
呢?除非我使用 inheritDoc 标记,否则 javadoc 不会被继承,这意味着我很清楚我想重用文档。什么应该阻止我这样做constructors
?