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 332371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:51:39+00:00 2026-05-12T09:51:39+00:00

I was trying to answer another question about the == operator and I created

  • 0

I was trying to answer another question about the == operator and I created this code:

NSString *aString = @"Hello";
NSString *bString = aString;
NSString *cString = @"Hello";

if (aString == bString)
    NSLog(@"CHECK 1");

if (bString == cString)
    NSLog(@"CHECK 2");

if ([aString isEqual:bString])
    NSLog(@"CHECK 3");

if ([aString isEqual:cString])
    NSLog(@"CHECK 4");

NSLog(@"%i", aString);
NSLog(@"%i", bString);
NSLog(@"%i", cString);

But was surprised at the results:

Equal[6599:10b] CHECK 1
Equal[6599:10b] CHECK 2
Equal[6599:10b] CHECK 3
Equal[6599:10b] CHECK 4
Equal[6599:10b] 8240
Equal[6599:10b] 8240
Equal[6599:10b] 8240

Is there some compiler trickery going on here?

  • 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-12T09:51:39+00:00Added an answer on May 12, 2026 at 9:51 am

    There is clearly string uniquing going on, at least within a single compilation unit. I recommend you take a brief tour through man gcc during which you visit all uses of “string”. You’ll find a few options that are directly relevant to literal NSStrings and their toll-free-bridged counterparts, CFStrings:

    • -fconstant-string-class=class-name sets the name of the class used to instantiate @"..." literals. It defaults to NSConstantString unless you’re using the GNU runtime. (If you don’t know if you are, you aren’t.)
    • -fconstant-cfstrings enables use of a builtin to create CFStrings when you write CFSTR(...).

    You can disable uniquing for C string literals using -fwritable-strings, though this option is deprecated. I couldn’t come up with a combination of options that would stop the uniquing of NSString literals in an Objective-C file. (Anyone want to speak to Pascal string literals?)

    You see -fconstant-cfstrings coming into play in CFString.h‘s definition of the CFSTR() macro used to create CFString literals:

        #ifdef __CONSTANT_CFSTRINGS__
        #define CFSTR(cStr)  ((CFStringRef) __builtin___CFStringMakeConstantString ("" cStr ""))
        #else
        #define CFSTR(cStr)  __CFStringMakeConstantString("" cStr "")
        #endif
    

    If you look at the implementation of the non-builtin __CFStringMakeConstantString() in CFString.c, you’ll see that the function does indeed perform uniquing using a very large CFMutableDictionary:

        if ((result = (CFStringRef)CFDictionaryGetValue(constantStringTable, cStr))) {
            __CFSpinUnlock(&_CFSTRLock);
        }
        // . . .
        return result;
    

    See also responses to the question, “What’s the difference between a string constant and a string literal?”

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

Sidebar

Ask A Question

Stats

  • Questions 169k
  • Answers 169k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer According to the documentation for String.replaceAll, it has the following… May 12, 2026 at 1:52 pm
  • Editorial Team
    Editorial Team added an answer One approach we've used in the past is to script… May 12, 2026 at 1:52 pm
  • Editorial Team
    Editorial Team added an answer On the server: need simpledom include("simpledom.php"); $html = file_get_html('http://www.google.com/'); echo… May 12, 2026 at 1:52 pm

Related Questions

A couple of summers ago I worked for company that needed an Access DB
I have a question regarding how to get the white- and black-listing feature of
I'm a total newbie when it comes to CSS so I've pretty much given
Let's say you want to diagram a Map class (the mathematical kind, not the

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.