我想知道是否可以在类的main方法中为重要变量生成Javadoc文本。
public static void main(String[] args) {
/**
* Writes statistical information to results file
*/
BufferedWriter report_stream = null;
....
这是一个变量的示例,其描述我想在Javadoc中显示。 谢谢。
答案 0 :(得分:2)
没有。 Javadoc用于生成API的文档,而不是实现。
但是,您可以将缓冲的编写器包装在另一个类中,并在需要时记录该文档。