InterviewSolution
Saved Bookmarks
| 1. |
What Is The Meaning Of "atomic" Keyword? |
|
Answer» “atomic”, the synthesized setter/getter will ensure that a whole value is always RETURNED from the getter or set by the setter, only SINGLE THREAD can access VARIABLE to get or set value at a time. “atomic”, the synthesized setter/getter will ensure that a whole value is always returned from the getter or set by the setter, only single thread can access variable to get or set value at a time. |
|