使用oc时,经常会用到NSString,NSNumber,NSArray,NSDictionary,下面是关于他们的字面量语法的使用。
(1)字面数值
有时需要把整数,浮点数,布尔值封入oc对象中
一般写法:
NSNumber *num = [NSNumber numberWithInt:1];
使用字面量语法:
NSNumber *num = @1;
其他类型使用字面量语法:
NSNumber *[email protected];
NSNumber *[email protected];
NSNumber *[email protected];
NSNumber *[email protected];
NSNumber *[email protected]‘a‘;
字面量也适用于以下表达式:
int x=5;
float y =6.15f;
NSNumber *[email protected](x*y);
(2)字面量数组
一般写法:
NSArray *animals=[NSArray arrayWithObject:@"cat",@"dog",@"mouse",nil];
使用字面量语法:
NSArray *[email protected][@"cat",@"dog",@"mouse"];
数组的操作
一般写法:
NSString *dog=[animals objectAtIndex:1];
使用字面量:
NSString *dog=animals[1];
(3)字面量字典
一般写法:
NSDictionary *personData=[NSDictionarydictionaryWithObjectsAndKeys:@"Matt",@"firstName",@"Galloway",@"lastName",[NSNumber numberWithInt:28],@"age",nil];
使用字面量:
NSDictionary *[email protected]{@"firstName":@"Matt",@"lastName":@"Galloway",@"age":@28};
字典的操作
一般写法:
NSString *lastName=[personData objectForKey:@"lastName"];
使用字面量:
NSString *lastName=personData[@"lastName"];
(4)可变数组与字典
通过取下标操作,可以访问数组中某个下标或字典中某个键所对应的元素。如果数组与字典对象是可变的,那么也能通过下标修改其中的元素值。
一般写法:
[mutableArray replaceObjectAtIndex:1 withObject:@"dog"];
[mutableDictionary setObject:@"Galloway" forKey:@"lastName"];
使用字面量:
mutableArray[1][email protected]"dog";
mutableDictionary[@"lastName"][email protected]"Galloway";
版权声明:本文为博主原创文章,未经博主允许不得转载。