gpt4 book ai didi

java - 下面的 java 枚举类的主体是如何工作的?

转载 作者:行者123 更新时间:2023-12-01 12:35:19 25 4
gpt4 key购买 nike

public enum ID {
Player(),
Enemy();
}

我已经阅读了 Java 枚举的整个 oracle 文档,我知道它是如何工作的以及所有基础知识,但我对上述枚举类的主体一无所知Player () , Enemy () 是常量吗?功能 ?还有这会返回什么 ID.Player();

最佳答案

与常规类一样,如果您不声明显式构造函数,您将获得一个带有枚举的默认无参数构造函数。

语言规范 says :

In an enum declaration with no constructor declarations, a default constructor is implicitly declared. The default constructor is private, has no formal parameters, and has no throws clause.

在这之前,它还说:

An enum constant may be followed by arguments, which are passed to the constructor of the enum ... If the arguments are omitted, an empty argument list is assumed.

因此,这些只是枚举常量,显式调用隐式构造函数。这与省略 () 完全相同。

关于java - 下面的 java 枚举类的主体是如何工作的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62107281/

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