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

  • Home
  • SEARCH
  • 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 3288332
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T20:35:44+00:00 2026-05-17T20:35:44+00:00

Is there a way in objective C that I can define a static int

  • 0

Is there a way in objective C that I can define a static int that is thread safe?

for example if I have class called Session that has:

static unsigned int session_id = 1000;

- (int) generateSessionID{
        return session_id++;
}

I am constructing session objects from different threads, each session object
should have a unique id.

  • 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-05-17T20:35:44+00:00Added an answer on May 17, 2026 at 8:35 pm

    If you’re talking Cocoa, the mutex functionality there is provided by NSLock and NSRecursiveLock.

    In order to properly protect non-atomic resource, you need these mutexes, lest multiple threads may try to change the data at the same time (leading to corruption) or use the data in a half-changed state (leading to invalid data).

    Your code would look something like this:

    static NSLock session_id_lock;
    static unsigned int session_id = 1000;
    
    - (int) generateSessionID{
        int new_id;
        [myLock lock];
        new_id = session_id++;
        [myLock unlock];
        return new_id;
    }
    

    If you’re not using Cocoa (or what little Cocoa programming I remember from my brief interlude with an iMac is so dimly remembered that it’s near useless), just use the concept, translating it to whatever language or framework you have:

    • lock the mutex before using or changing a protected resource.
    • use or change the resource.
    • unlock the mutex.
    • bonus advice 1: lock the mutex as late as possible and unlock it as soon as possible.
    • bonus advice 2: only lock what you need so you avoid unnecessary delays.

    Explaining that last point some more: if you synchronise on self for two totally unrelated things (say a session ID and a user ID), they will block each other despite the fact that it’s not necessary to do so. I would prefer two separate mutexes to keep the granularity low.

    Of course, if you only have a mutex on the session ID alone (but see below for caveat), feel free to use synchronized(self) but I’d prefer to do it my way so I wouldn’t get caught out adding another protected resource later.

    In any case (this is the caveat mentioned), you will probably find that synchronising on self would not adequately protect a static variable, which would be shared across multiple objects. The mutex should belong to the data rather than whatever is using it.

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

Sidebar

Related Questions

Premise I believe that there is a way to objectively define "Good" and "Bad"
I have a somewhat messily-formatted Objective-C code base. Is there a way to have
is there way thats i can preselect an item when the page loads or
Is there a way to find the name of the program that is running
Is there a way to take over the Entity Framework class builder? I want
I'm wondering if there is a better way to approach this problem. The objective
I've just discovered, via the Objective Flickr API, that you can add projects into
Is there any way to make it so that the user cannot swipe-to-delete items?
I can write a function this way in Objective-C. This can be used to
In Objective-C, if I override a class method using a category, is there a

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.