Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8577609
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T20:11:54+00:00 2026-06-11T20:11:54+00:00

I’m a newer in Objective C. I found can access the private variable outside.

  • 0

I’m a newer in Objective C. I found can access the private variable outside. I just get a warning Like follows:

@interface foo : NSObject
{
   @private 
        int b;
}
-(id) init;
@end
//omit the implement
int main()
{
    foo *a = [[foo alloc] init];
    printf("%d", a->b);
}

So dose the private keyword only work on its subclass? If Yes, why need protected keyword

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T20:11:55+00:00Added an answer on June 11, 2026 at 8:11 pm

    The code you provided accesses ab, not b. Furthermore, you’re using the class name foo, but you appear to be trying to access an instance variable named ab. If you want to access an instance variable, you’ll first need to create an instance of the class:

    foo f = [foo new];
    

    The @private keyword prevents you from accessing b from anywhere other than the methods defined by class foo.

    Update:

    I’m assure the codes is correct now. So why I can access the variable outside.

    If you’re compiling with an Objective-C compiler, you normally can’t:

    Private variable error image

    If you’re able to get the code to compile and access b, there’s something odd going on. What compiler are you using, and what settings?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I think that some newer languages like JS can do this natively, but I
I'm newer to Objective-C though I have worked in Java, C, and C++ and
I have the following Objective C test code in a SenTestCase class. I get
Why does Objective C provide both class NSString and subclass NSMutableString rather than just
Possible Duplicate: Does Objective-C guarantee the initialization of interface member data? When I declare
I'm fairly new to Objective-C and I can't figure out how to wait in
Excuse my iPhone/Objective-C newbie status please! I've found my HTTP server using NSNetServiceBrowser, but
I'm copying some objective c++ files over from another (working) project. I get no
I am a newer to objective c. I have read the memory management document
I am working on my first objective-c program, and would like to include an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.