注释类“public static @interface”中的 static 关键字是什么?

发布于 2024-11-26 13:46:36 字数 191 浏览 1 评论 0原文

我发现一个奇怪的注释:

public static @interface WebResult { }

为什么有static?他们如何编译它?我的 IDE 不允许这样的修饰符!

该类包含在 javax.jws.WebResult 中。

I found a strange annotation:

public static @interface WebResult { }

Why is static there? How do they compile it? My IDE does not allow such modifier there!

The class this is contained in is javax.jws.WebResult.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稀香 2024-12-03 13:46:36

当它嵌套在另一个类中时它是有效的(但不是必需的):

public class Foo {   
    public static @interface Bar {
    }    
}

来自 Java 语言规范 第 8.5.2 节

成员接口始终是隐式静态的。成员接口的声明中显式列出 static 修饰符是允许的,但不是必需的。

如果您在顶级课程中看到过它,请说明您是在哪里找到它的。

It's valid (but not required) when it's nested inside another class:

public class Foo {   
    public static @interface Bar {
    }    
}

From the Java language specification section 8.5.2:

Member interfaces are always implicitly static. It is permitted but not required for the declaration of a member interface to explicitly list the static modifier.

If you've seen it on a top-level class, please show where you've found it like that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文