Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMarc Zovighian
1,664 PointsHow come we dont need to write *thing?
for (id thing in mixed)
why didnt we write for(id *thing in mixed) instead? Since thing is always going to be an object, isnt better for memory management to use a pointer to that object instead of the object?
1 Answer
Andres Oliva
7,810 PointsWe don't use * because id itself is a pointer.
For example:
NSString *s = @"x"; id obj = s;
In reality, *s = @"x", but s may be equal to 0xF226ACB2 (just saying), because s is a pointer to a memory address, whereas *s is the thing that s points to.
Basically, id is a pointer to an object of unknown/unspecified type.
Marc Zovighian
1,664 PointsMarc Zovighian
1,664 PointsMakes sense! Thanks a lot!