在定义枚举类型时,每种情况下可能需要一些注释。
我知道我们可以在Obj-C中使用这样的注释语法:
enum Example
{
Example1, ///< Comments for Example1.
Example2, ///< Comments for Example2.
Example3. ///< Comments for Example3.
}
我的问题是:如何迅速做到这一点?
答案 0 :(得分:1)
您可以使用双星在摘要中显示评论:
enum Example {
/** Comments for Example1. (with stars) */
case example1
/// Comments for Example2. (with three slash)
case example2
/// Comments for Example3. (with three slash)
case example3
}
这是一个reference
答案 1 :(得分:0)
不清楚您的问题是什么-添加“ //”会使该行的其余代码成为注释。所以你应该这样做:
<dependency>
<groupId>local.jasperFont</groupId>
<artifactId>local.jasperFont</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/resources/reports/fonts-extension.jar</systemPath>
</dependency>
或者,您可以像使用obj-c一样进行操作。两者都应该工作正常。