I just created a singleton method, and I would like to know what the function @synchronized()
does, 开发者_StackOverflow中文版as I use it frequently, but do not know the meaning.
It declares a critical section around the code block. In multithreaded code, @synchronized
guarantees that only one thread can be executing that code in the block at any given time.
If you aren't aware of what it does, then your application probably isn't multithreaded, and you probably don't need to use it (especially if the singleton itself isn't thread-safe).
Edit: Adding some more information that wasn't in the original answer from 2011.
The @synchronized
directive prevents multiple threads from entering any region of code that is protected by a @synchronized
directive referring to the same object. The object passed to the @synchronized
directive is the object that is used as the "lock." Two threads can be in the same protected region of code if a different object is used as the lock, and you can also guard two completely different regions of code using the same object as the lock.
Also, if you happen to pass nil
as the lock object, no lock will be taken at all.
From the Apple documentation here and here:
The @synchronized directive is a convenient way to create mutex locks on the fly in Objective-C code. The @synchronized directive does what any other mutex lock would do—it prevents different threads from acquiring the same lock at the same time.
The documentation provides a wealth of information on this subject. It's worth taking the time to read through it, especially given that you've been using it without knowing what it's doing.
The @synchronized
directive is a convenient way to create mutex locks on the fly in Objective-C code.
The @synchronized
directive does what any other mutex lock would do—it prevents different threads from acquiring the same lock at the same time.
Syntax:
@synchronized(key)
{
// thread-safe code
}
Example:
-(void)AppendExisting:(NSString*)val
{
@synchronized (oldValue) {
[oldValue stringByAppendingFormat:@"-%@",val];
}
}
Now the above code is perfectly thread safe..Now Multiple threads can change the value.
The above is just an obscure example...
@synchronized block automatically handles locking and unlocking for you. @synchronize you have an implicit lock associated with the object you are using to synchronize. Here is very informative discussion on this topic please follow How does @synchronized lock/unlock in Objective-C?
Excellent answer here:
Help understanding class method returning singleton
with further explanation of the process of creating a singleton.
@synchronized
is thread safe
mechanism. Piece of code written inside this function becomes the part of critical section
, to which only one thread can execute at a time.
@synchronize
applies the lock implicitly whereas NSLock
applies it explicitly.
It only assures the thread safety, not guarantees that. What I mean is you hire an expert driver for you car, still it doesn't guarantees car wont meet an accident. However probability remains the slightest.
精彩评论