InterviewSolution
Saved Bookmarks
| 1. |
Which is thread safe |
|
Answer» Mark this answer as brainlist and do follow me and THANK all my answersExplanation:Thread-safe CODE is code that will work even if many Threads are EXECUTING it simultaneously. A piece of code is thread-safe if it only manipulates SHARED data structures in a manner that GUARANTEES safe execution by multiple threads at the same time. |
|