Java
My knowledge is rusty, needs to constantly reading and writing.
volatile (vs synchronized) has different meaning in Java. Unlike C++, everything is either volatile or constant.
immutable is important keyword in Java, means the value cannot be changed.
Java slowness is on garbage collector. Thus, implementation should be organized in certain way.
volatile (vs synchronized) has different meaning in Java. Unlike C++, everything is either volatile or constant.
immutable is important keyword in Java, means the value cannot be changed.
Java slowness is on garbage collector. Thus, implementation should be organized in certain way.
Comments
Post a Comment