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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T22:42:42+00:00 2026-06-15T22:42:42+00:00

I am very new for objective c. I have experiment a convenient constructor for

  • 0

I am very new for objective c.
I have experiment a convenient constructor for memory leaks.

Here is my constructor

+(Myobject * ) test{
    return [[self alloc] init];
}

and I test it with this code in main.m

Myobject * __weak g = [Myobject test];
NSLog(@"%@",g);

I wish the log will say (null) because pointer in constructor is died when it out of scope and arc will do remove this object out of memory since there is no strong pointer to retain it.
just only weak pointer.

But in the log it say something that an object is still alive.
In my understand now there is a strong pointer that retain this object in the constructor method.So it will be there forever.

So how can i get rid of that pointer?
Or Did i miss something?

  • 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-15T22:42:44+00:00Added an answer on June 15, 2026 at 10:42 pm

    Your test method returns an autoreleased object. If there is no strong reference to the object, it will be destroyed at the end of the current autorelease pool. You can verify that with

    Myobject * __weak g;
    @autoreleasepool {
        g = [Myobject test];
        NSLog(@"%@", g); // object still exists here (Correction: might still exist here, see Nikolaus Ruhe's comment)
    }
    NSLog(@"%@", g);  // should output "(null)"
    

    Due to ARC naming conventions the behaviour is different if you rename your method to newTest. In that case it returnes a retained object which is released immediately.

    The exact semantics can be found in Automatic Reference Counting, in the sections “3.2.2. Retained return values” and “3.2.3. Unretained return values”.

    Correction: As Nikolai Ruhe correctly pointed out, it is not guaranteed that the object returned by [Myobject test] is in the autorelease pool, the compiler can remove retain/release/autorelease calls during optimization.

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

Sidebar

Related Questions

I am very new to Objective-C. Here is what I want. I have a
I'm very new to Objective-C, and am having some beginner issues. I have an
I'm very new to Objective-C and have just made my first app from scratch.
I am very new to Objective-C and was reading through memory management. I was
I am very new to xcode & Objective-C (having come from PHP) i have
I'm very much new to objective C. I have a case where I need
I am very new to XCode and objective-c. This question may have been answered
I am new to Objective-C and as a very simple learning exercise, I have
I'm very new to Objective-C, and am having some beginner issues. I have an
Hello all! I am very new to xcode and objective-c but I have been

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.