A a = [[A alloc] init]; a.name = @"a"; 等价于 [a setName:@"a"]; NSLog(@"%@", a.name); 等价于 NSLog(@"%@", [a name]);
等价于
等价于