gpt4 book ai didi

java - 如何通过代码检索 Java 注释?

转载 作者:搜寻专家 更新时间:2023-11-01 02:52:06 24 4
gpt4 key购买 nike

我必须在标准输出上打印 Java 类上的注释。我该怎么做?

例如。

/**
* Comment to write
* @version 1.1
*/
public class WriteMyComment {
//something...
}

最佳答案

无论您需要做什么,我都宁愿使用注释。我不确定是否可以在运行时访问源注释。

MyAnnotation.java

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
public @interface MyAnnotation {
String value();
}

测试.java

@MyAnnotation("Some notes here")
public class Test {
public static void main(String[] args) {
System.out.println(Test.class.getAnnotation(MyAnnotation.class).value());
}

}

关于java - 如何通过代码检索 Java 注释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9275704/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com