在Java中,什么时候调用枚举常量的构造函数?

发布于 2024-08-04 02:36:40 字数 557 浏览 4 评论 0原文

要在 Java 中使用一个人为的示例,代码如下:

enum Commands{
   Save("S");
   File("F");

   private String shortCut;
   private Commands(String shortCut){ this.shortCut = shortCut; }
   public String getShortCut(){ return shortCut; }
}

我有以下测试/驱动程序代码:

public static void main(String args[]){
   System.out.println(Commands.Save.getShortCut());
}

问题是: 在Java中,什么时候调用枚举常量的构造函数?在上面的示例中,我仅使用 Save 枚举常量。这是否意味着构造函数被调用一次来仅创建 Save ?或者无论如何,SaveFile 都会一起构造吗?

To use a contrived example in Java, here's the code:

enum Commands{
   Save("S");
   File("F");

   private String shortCut;
   private Commands(String shortCut){ this.shortCut = shortCut; }
   public String getShortCut(){ return shortCut; }
}

I have the following test/driver code:

public static void main(String args[]){
   System.out.println(Commands.Save.getShortCut());
}

The question is:
In Java, when is the constructor for an enumerated constant invoked? In the above example, I am only using the Save enumerated constant. Does this mean that the constructor is called once to create Save only? Or will both Save and File be constructed together regardless?

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

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

发布评论

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

评论(3

忆梦 2024-08-11 02:36:40

初始化enum 类时会调用构造函数。每个构造函数都将按照成员声明顺序被调用,无论实际引用和使用哪些成员。

The constructors are invoked when the enum class is initialized. Each constructor will be invoked, in member declaration order, regardless of which members are actually referenced and used.

人生戏 2024-08-11 02:36:40

static() {...} 方法非常相似,构造函数在 Enum 类首次初始化时被调用。枚举的所有实例都是在使用任何实例之前创建的。

public static void main(String args[]){
   System.out.println(Commands.Save.getShortCut());
}

在此示例中,SaveFile 的构造函数将在调用 Save.getShortCut() 之前完成。

正如代码中所声明的那样,它们是按顺序调用的。

Much like the static() {...} method, the constructors are invoked when the Enum class is first initialized. All instances of the Enum are created before any may be used.

public static void main(String args[]){
   System.out.println(Commands.Save.getShortCut());
}

In this sample, the ctor for both Save and File will have completed before Save.getShortCut() is invoked.

They are invoked sequentially, as declared in the code.

要走干脆点 2024-08-11 02:36:40

正如其他人所说,两者都将在类初始化时创建。我想指出的是,这是在任何静态初始化程序之前完成的,因此您可以在静态块中使用这些枚举。

Both will be created at the class initialization time as others said. I like to point out that this is done before any static initializers so you can use these enums in static block.

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