Skip to content

Tag: java

Why enum constructor “this” and “Enum.this” is different

I have a local enum cache, need in enum constructor return enum instance. but when return ‘this’ , it’s fail, return ‘Enum.this’ , it’s ok. the exception looks like a inner class. because this instance is not finish ? this is my code and exception Answer Here: Notice that t…