字符串在内存中是不可变的,放在只读内存段,因此你可以使用str[0]来访问,但是不能使用str[0]='a'来修改。
I\'m making a game for the iPhone, and I have a class called Robot. Then I have a class called View, which renders everything.