Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Myenum.lengthのようなものでEnum の項目数を取得する組み込みの方法はありますか?
Myenum.length
int size()または、要素の数をハードコーディングする関数を自分で実装する必要がありますか?
int size()
enum.values() メソッドは Java コンパイラーによって追加され、API には記載されていません。
Enum の values() メソッドのドキュメントはどこにありますか?
MyEnum.values()列挙定数を配列として返します。
MyEnum.values()
したがって、次を使用できます。
int size = MyEnum.values().length