[html] view plain copy int gCounter;//全局变量 @interface MyObject : NSObject { int counter;//成员变量 } @end [html] view plain copy @implementation MyObject [html] view plain copy NSString *str=@"";//???? - (void) print { int cter = 0;//局部变量 NSLog(@"%i", cter ); } @end