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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T09:17:18+00:00 2026-05-31T09:17:18+00:00

In XCode 4.2, I find that I can write a statement like this: [obj

  • 0

In XCode 4.2, I find that I can write a statement like this:

[obj = obj method];

And there is no error or warning about this.

So, I want to know how the compiler will interpret this? Is this the same as:

obj = [obj method];
  • 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-31T09:17:19+00:00Added an answer on May 31, 2026 at 9:17 am

    Turn up your warning levels. Clang will emit a warning (-Wself-assign):

    warning: explicitly assigning a variable of type 'NSObject *' to itself [-Wself-assign]
                      [obj = obj method];
    

    It is not the same as obj = [obj method];. It is interpreted as:

    obj = obj;
    [obj method];
    

    and the compiler can just omit the self-assign. That is, this program prints a:

    NSString * a = @"a";
    NSString * b = @"b";
    NSLog(@"%@", b = a);
    

    …but why would you write a program using this exact statement? It will be confusing to interpret or just awkward, for many people.

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

Sidebar

Related Questions

Where can I find resource on how to write Xcode plugins? I don't want
I just upgraded XCode to 3.2.6 but Organizer said that XCode can not find
I can't seem to find in Xcode how can I add an include dir
Previously I used to write my object interfaces like this: // VERSION 1.0 @interface
I have moved to Xcode 4.2, since that, i didn't find the Settings Panel
I have see this in sample objective c code before, but can't find it
I haven't been able to find what these Xcode icons mean. Some you can
I have an application that can import an XML file through this terminal command
Hey, I'm looking to find a good MySQL framework for Cocoa that I can
I am getting this error; Code Sign error: Provisioning profile '98745F54-634Y-882B-A56T-5EFE760C3EE6' can't be found

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.