1.'-'系在实例方法前头
2.'+'类方法class method 相反;
3.void表示没有返回值;
4.&x 和c语言一样,代表的是x的在内存上的地址;
5.*y指向内存存储空间内的数值;
6.NSString *favoritaComputer; 定义指针指向的数值是何种类型(字符串类型);
7.int *y;指针变量y包涵的内存地址存储是整形数值;
8.数组:NSArray 和NSMutableArray;
'+'能够直接作用于类方法名称前面;
+ (id) array; 创建空数组;
NSString *element = [myArray objctAtIndex :0];把索引0的位置赋值给element;
int count = [myArray count];--计算数组的个数并赋值给count为整型;
[myArray replaceobjectAtIndex:1 withobject:@'Hello'];用replaceObjectAtIndex方法把索引1的位置替换了Hello;