What does @private mean in Objective-C?

link|improve this question

62  
People here are welcome to answer any question they wish. If you don't like the question, then vote it down. If the community agrees, it will be severely downvoted. If it is not appropriate, it will be closed. – Arnold Spence May 10 '09 at 4:54
50  
+1 - it's a noob question, but it's an honest programming question, clearly stated and to the point. I didn't think it deserved such a negative rating. – rampion May 10 '09 at 5:11
28  
This is a programming question (lazy or not) that hasn't been asked before. Therefore it's a valid one. – paxdiablo May 10 '09 at 5:16
9  
And that doesn't make sense daniel... Asking a question that makes sense vs asking one that doesn't is different. Even if someone did ask that, I would respectfully tell them that they cant program in those languages for the iPhone, and not be an asshole like you're being now. – dkind May 10 '09 at 5:27
17  
The highest-ranking Google results for ["objective-c" @private] are currently not terribly useful for beginners. They say things like "it's similar to C++" and "it's a compiler directive to make instance variables private". If this questions ends up being a high-ranked Google answer, it will help a lot of beginners figure out what @private means. So while the question may be lazy, it's neither vague nor useless, and answering it properly might help a lot of beginners. – LKM May 10 '09 at 7:14
show 15 more comments
feedback

2 Answers

up vote 96 down vote accepted

It's a visibility modifier—it means that instance variables declared as @private can only be accessed by instances of the same class. Private members cannot be accessed by subclasses or other classes.

For example:

@interface MyClass : NSObject
{
    @private
    int someVar;  // Can only be accessed by instances of MyClass

    @public
    int aPublicVar;  // Can be accessed by any object
}
@end

Also, to clarify, methods are always public in Objective-C. There are ways of "hiding" method declarations, though—see this question for more information.

link|improve this answer
33  
@daniel, you're entitled to your opinion but it's only your opinion, others may not share it. I'm actually happy to see even simple lazy questions show up on SO so it can become the repository of choice for all programming questions. And, if a question is asked, it should be answered. The way of handling questions you don't like is to downvote or vote to close, then vote to delete if you're really passionate. – paxdiablo May 10 '09 at 5:14
6  
Pax: you have a lot more experience with SO and I respect that because of that, you might have a more enlightened view than I do, about how the site should function. But speaking as one of the "experts" who might chime in and provide answers to the real hard questions, I'm turned off when the site becomes tainted by "lazy" questions. I'm certainly willing to let the site bcome what it will, but questions like this will drive away people like myself who have no patience for vague, lazy inquiries. – danielpunkass May 10 '09 at 5:22
5  
@daniel: I don't really see a problem with lazy questions. If you don't like the question, down vote and move on. – cdmckay May 10 '09 at 6:57
4  
Don't forget @protected for ivars which can only be accessed by other instances of MyClass, or one of its subclasses. – Mike Abdullah May 10 '09 at 9:21
3  
@daniel, I see it as a (tricky) balancing act. I'd like to see SO used both for the experienced and newcomers so I don't tend to dislike questions that have a specific technical answer (such as this one) no matter how simple they seem. And my experience here doesn't mean much really - anyone above 10k has the same power. Whether they have the same goals for SO, I have no idea. I've actually mellowed a bit since my early days here. I used to be much harsher (I'd still like to beat into an early grave every author of a question with the word "favorite" in it but that's another matter :-) – paxdiablo May 10 '09 at 13:28
show 7 more comments
feedback

As htw said, it's a visibility modifier. @private means that the ivar (instance variable) can only be accessed directly from within an instance of that same class. However, that may not mean much to you, so let me give you an example. We'll use the init methods of the classes as examples, for simplicity's sake. I'll comment inline to point out items of interest.

@interface MyFirstClass : NSObject
{
    @public
    int publicNumber;

    @protected  // Protected is the default
    char protectedLetter;

    @private
    BOOL privateBool;
}
@end

@implementation MyFirstClass
- (id)init {
    if (self = [super init]) {
        publicNumber = 3;
        protectedLetter = 'Q';
        privateBool = NO;
    }
    return self;
}
@end

@interface MySecondClass : MyFirstClass  // Note the inheritance
{
    @private
    double secondClassCitizen;
}
@end

@implementation MySecondClass
- (id)init {
    if (self = [super init]) {
        // We can access publicNumber because it's public;
        // ANYONE can access it.
        publicNumber = 5;

        // We can access protectedLetter because it's protected
        // and it is declared by a superclass; @protected variables
        // are available to subclasses.
        protectedLetter = 'z';

        // We can't access privateBool because it's private;
        // only direct instances of the class that declared it
        // can use it
        privateBool = NO;  // COMPILER ERROR HERE

        // We can access secondClassCitizen directly because we 
        // declared it; even though it's private, we can get it.
        secondClassCitizen = 5.2;  
    }
    return self;
}

@interface SomeOtherClass : NSObject
{
    MySecondClass *other;
}
@end

@implementation SomeOtherClass
- (id)init {
    if (self = [super init]) {
        other = [[MySecondClass alloc] init];

        // Neither MyFirstClass nor MySecondClass provided any 
        // accessor methods, so if we're going to access any ivars
        // we'll have to do it directly, like this:
        other->publicNumber = 42;

        // If we try to use direct access on any other ivars,
        // the compiler won't let us
        other->protectedLetter = 'M';     // COMPILER ERROR HERE
        other->privateBool = YES;         // COMPILER ERROR HERE
        other->secondClassCitizen = 1.2;  // COMPILER ERROR HERE
    }
    return self;
}

So to answer your question, @private protects ivars from access by an instance of any other class. Note that two instances of MyFirstClass could access all of each other's ivars directly; it is assumed that since the programmer has complete control over this class directly, he will use this ability wisely.

link|improve this answer
10  
It should be mentioned that it's uncommon to use @public, @proteced and @private in Objective-C. The prefered approach is to always use accessors. – Georg Schölly May 16 '09 at 7:26
BJ, this is the most succinct and helpful response to this question I've seen. Very well put. – MikeyWard Oct 17 '10 at 2:51
@Georg, but how do you enforce the use of accessors unless you mark your ivars with restricted visibility? – Greg Maletic Nov 1 '10 at 17:39
@Greg: ivars are by default protected. – Georg Schölly Nov 1 '10 at 19:42
4  
@Georg Schölly: Since xcode 4.x+ automatically puts @private in the template for an object, it is not so uncommon anymore. – drewk May 22 '11 at 18:47
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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