本文介绍了如何设置Java注解的字符串数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我宣布这样的注解:

public @interface CustomAnnot 
{
    String[] author() default "me";
    String description() default "";
}

因此​​,一个有效的注释是

A valid Annotation therefore would be

@CustomAnnot(author="author1", description="test")

我想不通的是,如何设置一个以上的作者,因为作者()返回拥有的String []这应该是可能的。

What I can't figure out is, how to set more than one author, since author() has return String[] this should be possible.

@CustomAnnot(author="author1","autor2", description="test")

不起作用!

推荐答案

做这样的:

public @interface CustomAnnot {

    String[] author() default "me";
    String description() default "";

}

和您的注释:

    @CustomAnnot(author={"author1","author2"}, description="test")

这篇关于如何设置Java注解的字符串数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 00:19