up vote 220 down vote favorite
136
share [g+] share [fb]

What do atomic and nonatomic mean in property declarations?

@property(nonatomic, retain) UITextField *userName;

@property(atomic, retain) UITextField *userName;

@property(retain) UITextField *userName;

What is the functional difference between these 3?

link|improve this question

Updating the url from Apple's documentation: developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/… – JackDaniels Aug 3 '11 at 19:10
feedback

5 Answers

up vote 298 down vote accepted

The last two are identical; "atomic" is the default behavior (note that it is not actually a keyword; it is specified only by the absence of nonatomic).

Assuming that you are @synthesizing the method implementations, atomic vs. non-atomic changes the generated code. If you are writing your own setter/getters, atomic/nonatomic/retain/assign/copy are merely advisory.

With "atomic", the synthesized setter/getter will ensure that a whole value is always returned from the getter or set by the setter, regardless of setter activity on any other thread. That is, if thread A is in the middle of the getter while thread B calls the setter, an actual viable value -- an autoreleased object, most likely -- will be returned to the caller in A.

In nonatomic, no such guarantees are made. Thus, nonatomic is considerably faster than "atomic".

What "atomic" does not do is make any guarantees about thread safety. If thread A is calling the getter simultaneously with thread B and C calling the setter with different values, thread A may get any one of the three values returned -- the one prior to any setters being called or either of the values passed into the setters in B and C. Likewise, the object may end up with the value from B or C, no way to tell.

Ensuring data integrity -- one of the primary challenges of multi-threaded programming -- is achieved by other means.

link|improve this answer
8  
It just occured to me that if you provide data integrity, atomicity of properties is not required, as you'll only have one thread writing to a property at any one time (during which time no reads are allowed either). Am I right in thinking this? – T . Aug 18 '09 at 16:27
11  
That would generally be correct. Example; if you were to manage access to a sub-graph of objects such that the sub-graph is only ever interacted with on a single thread, all properties used on that sub-graph can be nonatomic. – bbum Aug 20 '09 at 7:17
@bbum: Thank you very much for this explanation. It clears alot of doubts regarding atomic, nonatomic – iHS Mar 2 '11 at 20:48
14  
Just a bit of pedantry: technically, the last 2 are not identical, since there is no atomic keyword. The second-to-last one is incorrect and won't compile, whereas the last one will. – Dave DeLong Mar 7 '11 at 23:30
1  
Given that any thread-safe code will be doing its own locking etc, when would you want to use atomic property accessors? I'm having trouble thinking of a good example. – Daniel Dickison May 24 '11 at 20:00
show 7 more comments
feedback

This is explained in Apple's documentation, but below are some examples of what is actually happening. Note that there is no "atomic" keyword, if you do not specify "nonatomic" then the property is atomic, but specifying "atomic" explicitly will result in an error.

//@property(nonatomic, retain) UITextField *userName;
//Generates roughly

- (UITextField *) userName {
    return userName;
}

- (void) setUserName:(UITextField *)userName_ {
    [userName_ retain];
    [userName release];
    userName = userName_;
}

Now, the atomic variant is a bit more complicated:

//@property(retain) UITextField *userName;
//Generates roughly

- (UITextField *) userName {
    UITextField *retval = nil;
    @synchronized(self) {
        retval = [[userName retain] autorelease];
    }
    return retval;
}

- (void) setUserName:(UITextField *)userName_ {
    @synchronized(self) {
      [userName_ retain];
      [userName release];
      userName = userName_;
    }
}

Basically, the atomic version has to take a lock in order to guarantee thread safety, and also is bumping the ref count on the object (and the autorelease count to balance it) so that the object is guaranteed to exist for the caller, otherwise there is a potential race condition if another thread is setting the value, causing the ref count to drop to 0.

There are actually a large number of different variants of how these things work depending on whether the properties are scalar values or objects, and how retain, copy, readonly, nonatomic, etc interact. In general the property synthesizers just know how to do the "right thing" for all combinations.

link|improve this answer
2  
Not that the lock doesn't "guarantee thread safety". – Jonathan Sterling Dec 31 '09 at 22:36
3  
Thread safety in the sense that concurrent accesses on multiple threads will not cause corruption due to retain/release (malloc/free) issues will using the accessors. Obviously it doesn't (and can't) guarantee safety with respect to the semantics of a particular object returned by the accessor. – Louis Gerbarg Jan 1 '10 at 21:58
3  
I just noticed that about 6 months ago someone edited my answer, and replaced the code with incorrect code, I have rolled it back. For reference, the nonatomic accessor DOES NOT need to retain/autorelease its return value since it does not need to worry that another thread is tweaking the retain count. This is one of the primary efficiency gains of declaring something nonatomic. If you are going to edit someone else's answers in code, please make sure you actually know what you are doing. – Louis Gerbarg Aug 10 '10 at 16:54
4  
@Louis Gerbarg: I believe your version of the (nonatomic, retain) setter will not work properly if you try to assign the same object (that is: userName == userName_) – Florin Aug 12 '10 at 9:29
2  
Your code is slightly misleading; there is no guarantee on what atomic getters/setters are synchronized. Critically,@property (assign) id delegate; is not synchronized on anything (iOS SDK GCC 4.2 ARM -Os), which means there's a race between [self.delegate delegateMethod:self]; and foo.delegate = nil; self.foo = nil; [super dealloc];. See stackoverflow.com/questions/917884/… – tc. Dec 1 '10 at 18:20
show 1 more comment
feedback

Easiest answer first: There's no difference between your second two examples. By default, property accessors are atomic.

Atomic accessors in a non garbage collected environment (i.e. when using retain/release/autorelease) will use a lock to ensure that another thread doesn't interfere with the correct setting/getting of the value.

See the "Performance and Threading" section of Apple's Objective-C 2.0 documentation for some more information and for other considerations when creating multi-threaded apps.

link|improve this answer
So why would I want to specifically make something nonatomic? – Alex Wayne Feb 26 '09 at 3:00
2  
Two reasons. First off, for synthesized code it generates faster (but not threadsafe code). Second, if you are writing customer accessors that are not atomic it lets you annotate for any future user that the code is not atomic when they are reading its interface, without making them implementation. – Louis Gerbarg Feb 26 '09 at 6:34
feedback

Atomic guarantees that access to the property will be performed in an atomic manner. E.g. it will be thread safe, any get/set of a property on one thread must complete before another can access it.

If you imagine the following function occurring on two threads at once you can see why the results would not be pretty.

-(void) setName:(NSString*)string
{
  if (name)
  {
    [name release]; 
    // what happens if the second thread jumps in now !?
    // name may be deleted, but our 'name' variable is still set!
    name = nil;
  }

  ...
}
link|improve this answer
4  
It won't be thread safe. Atomicity only guarantees that you get a value that is whole -- which may not be the same as the value currently in the object. Atomicity does not generally contribute to thread safety. – bbum Feb 26 '09 at 6:32
2  
That comment doesn't make a lot of sense. Can you clarify? If you look at examples on the Apple site then the atomic keyword synchronizes on the object while updating its properties. – Andrew Grant Feb 26 '09 at 7:31
22  
Sure; thread safety can only be really expressed at the model level, not the individual accessor. Think of firstName/lastName, thread A retrieves firstName, thread B sets lastName, thread A retrieves lasName, thread B sets firstName. A now has a mismatched set of names; atomicity can't protect against that without introducing transaction atomicity which is a model level issue. – bbum Jun 28 '09 at 16:42
feedback

There is no such keyword "atomic"

@property(atomic, retain) UITextField *userName;

we can use the above like @property(retain) UITextField *userName;

Getting issues if i use @property(atomic,retain)NSString *myString

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.