java - Eventually , is enum a class? -
this question has answer here:
if write enum below ,
public enum states{ } ide generating .class file states.class in target, same if have written class named - states
so here , .class file tells me existence of java byte code enum type or mean enum type of java class type?
yes enum type of java class.
values of enum possible instances of class.
Comments
Post a Comment