0
synchronized : how it worked
Can explain me about synchronized in java and what's it and how it work??? Tell me about lock and unlocked read and write in class ...
1 Odpowiedź
+ 2
You use synchronized annotation to prevent using same variable when parallel processing is in place. Java locked variable for write when is used with another thread.