Before Java 8, We were not able to use non-final variables inside local class. But now they are allowing final as well as effectively final(who\'s values has not been change
The situation has not changed at all, actually. The compiler is just a bit smarter, and doesn't force you to use the final keyword anymore.
If it detects that the variable is effectively final, i.e. assigned only once, and never after, everything is good. If it detects that it's not effectively final, it refuses to compile.
So, instead of forcing you to make a variable final, it detects it automatically. But you still can't use non-effectively-final variables inside an inner class or lambda.