What is mean by Race Condition in Multithreading
Race condition is where multiple threads can access the same resource (typically an object’s instance variables) and can produce corrupted data if one thread “races in” too quickly before an operation that should be “atomic” has completed.
Comments
Post a Comment