show/hide this revision's text 2 tags
show/hide this revision's text 1

Cocoa / Objective-C Array beyond bounds question

I am playing with a little Cocoa Apps I wrote where I add objects of a class Person to a NSMutableArray. When I try to access an object that is beyond the array limit all I get is an "beyond bounds" message on the console.

In fact I expected something worse. I expected the app to crash! But it doesn't.

I am not sure if this is a good or a bad thing but I wonder what does happen inside the apps to prevent it from crashing. I always had the idea I am accessing objects in memory who are not there. Normaly that would kill every application.