NSLog (@"First element of myArray1 = %@", [myArray1 objectAtIndex: 0]); NSLog (@"First element of myArray2 = %@", [myArray2 objectAtIndex: 0]);
cocoa的属性也有3种 protected - Access is allowed only
by methods of the class and any subclasses. 默认是这个 private - Access is restricted to methods of the class. Access is not available to subclasses. public - Direct access available to methods of the class, subclasses and code
in other module files and classes. public的变量可以用 -> 操作符访问