是的它是相同的,它只是定义数组的简短符号.您也可以使用NSDictionary和NSNumber执行相同的操作.这里有一些样本(还有一些样本):
NSArray *shortNotationArray = @[@"string1", @"string2", @"string3"]; NSDictionary *shortNotationDict = @{@"key1":@"value1", @"key2":@"value2"}; NSNumber *shortNotationNumber = @69;