Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
825 views
in Technique[技术] by (71.8m points)

iphone - What is the difference between these two ways of allocating memory in Objective-C?

I am confused about the proper means of allocating memory in Objective-C. Suppose I have an NSMutableDictionary. There are two ways I can initialize it:

   NSMutableDictionary *alpha = [[NSMutableDictionary alloc] init];

or

   NSMutableDictionary *alpha = [NSMutableDictionary dictionary];

What is the difference between them? I know the first allocates memory for alpha, but what about the second?

Which of these is recommended as the best practice for allocating memory?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
[NSMutableDictionary dictionary];

is exactly the same thing as:

[[[NSMutableDictionary alloc] init] autorelease];

It just saves you some typing. It doesn't matter which one you use, as long as you know the difference between a retained object and an autoreleased one. If you're using ARC, then you don't even need to know that.

The convention is:

  1. If you see init, new or copy: it's a retained object.
  2. If the method name starts with the class name (sans the framework prefix), it's an autoreleased object.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...