Since enum in java 1.5 is a reference type (obviously extends from class java.lang.Enum). Is this a problem if I try to compare two enum that is loaded from different class loader with the == operator? for example.
The output is "false" because e is not the same instance with e2. Is this a flaw or something that already concerned by the java language designer?