在类中声明的枚举类型是否隐式静态?

发布于 2024-10-14 14:59:20 字数 402 浏览 1 评论 0原文

class Coffee{   
   enum CoffeeSize{BIG,HUGE,OVERWHELMING}   
   CoffeeSize size;   
  }   

class CoffeeTest{   
   public static void main(String[] args)   
  {   
       Coffee drink=new Coffee();   
       drink.size=Coffee.CoffeeSize.BIG;   
   }   
} 

Coffee.CoffeeSize.BIG:我只需使用类名Coffee就可以获得CoffeeSize。当我认为枚举类型是隐式静态时,我是否正确?

class Coffee{   
   enum CoffeeSize{BIG,HUGE,OVERWHELMING}   
   CoffeeSize size;   
  }   

class CoffeeTest{   
   public static void main(String[] args)   
  {   
       Coffee drink=new Coffee();   
       drink.size=Coffee.CoffeeSize.BIG;   
   }   
} 

Coffee.CoffeeSize.BIG: i can get CoffeeSize just using the class name Coffee. Am I correct when I think the enum type is implicitly static?

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

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

发布评论

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

评论(1

梦断已成空 2024-10-21 14:59:20

是的。语言规范甚至是这么说的。来自 JLS 第 8.9 节(枚举)

嵌套枚举类型是隐式静态的。允许将嵌套枚举类型显式声明为静态。

Yes, it is. The language specification even says so. From the JLS section 8.9 (enums):

Nested enum types are implicitly static. It is permissable to explicitly declare a nested enum type to be static.

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