下列哪个文档注释可以被java doc 提取生成API( )
时间: 2023-11-22 13:53:09 浏览: 186
Java doc 可以提取以下文档注释生成API文档:
```
/**
* This is a Javadoc comment and will be processed by JavaDoc tool.
*/
/*
* This is a regular comment and will not be processed by JavaDoc tool.
*/
// This is also a regular comment and will not be processed by JavaDoc tool.
```
阅读全文