About the JVM - you know how `final` cannot be cha...
# getting-started
v
About the JVM - you know how
final
cannot be changed, right? There is a thing in JVM that you can change a final field (assign to it) but only until a constructor is finished After that the objected "finalizes" itself and all final fields are locked up This is super important for concurrent access
👍 1