Answers for "Why volatile keyword is used for?"

1

Why volatile keyword is used for?

Using volatile  Keyword is yet another way (like synchronized,
atomic wrapper) of making class thread safe. Thread safe
means that a method or class instance can be used by 
multiple threads at the same time without any problem.
Posted by: Guest on August-30-2020

Browse Popular Code Answers by Language