本文介绍了Java - private和package-private枚举构造函数之间的区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

最近我经常使用枚举。所以我不知道...

Recently I'm quite oftenly using Enumerations. So I wonder...

私有Enum构造函数和任何可见性修饰符(package-private)之间的枚举构​​造函数有什么区别吗?

Is there any difference between a private Enum constructor and a enum constructor withour any visibility modifier (package-private)?

推荐答案

根据java

但是要加入

因此,package-private和private之间没有区别。

So there no difference between the package-private and private .

这篇关于Java - private和package-private枚举构造函数之间的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 13:54