1、Objective-C的基本数据类型就是C语言的基本数据类型,先来查看C语言的基本数据类型长度
NSLog(@"int is: %lu bytes.",sizeof(int));
NSLog(@"short int is: %lu bytes.",sizeof(short int));
NSLog(@"long int is: %lu bytes.",sizeof(long int));
NSLog(@"char is: %lu bytes.",sizeof(char));
NSLog(@"float is: %lu bytes.",sizeof(float));
NSLog(@"double is: %lu bytes.",sizeof(double));
NSLog(@"bool is: %lu bytes.",sizeof(bool));
2016-03-09 16:11:09.146 Test[2457:261145] int is: 4 bytes.
2016-03-09 16:11:09.146 Test[2457:261145] short int is: 2 bytes.
2016-03-09 16:11:09.146 Test[2457:261145] long int is: 8 bytes.
2016-03-09 16:11:09.146 Test[2457:261145] char is: 1 bytes.
2016-03-09 16:11:09.146 Test[2457:261145] float is: 4 bytes.
2016-03-09 16:11:09.146 Test[2457:261145] double is: 8 bytes.
2016-03-09 16:11:09.146 Test[2457:261145] bool is: 1 bytes.
2、int,NSInteger,NSUInteger,NSNumber 的区别
1、当需要使用int类型的变量的时候,可以像写C的程序一样,用int,也可以用NSInteger,但更推荐使用NSInteger,因为这样就不用考虑设备是32位的还是64位的。
2、NSUInteger是无符号的,即没有负数,NSInteger是有符号的
3、有人说既然都有了NSInteger等这些基础类型了为什么还要有NSNumber?它们的功能当然是不同的。
NSInteger是基础类型,但是NSNumber是一个类。如果想要在NSMutableArray里存储一个数值,直接用NSInteger是不行的,必须用NSNumber类型
Cocoa提供了NSNumber类来包装(即以对象形式实现)基本数据类型。
例如以下创建方法:
+ (NSNumber *) numberWithChar: (char) value;
+ (NSNumber *) numberWithInt: (int) value;
+ (NSNumber *) numberWithFloat: (float) value;
+ (NSNumber *) numberWithBool: (BOOL) value;
将基本类型数据封装到NSNumber中后,还可以通过下面的实例方法转化为基本数据类型:
- (char) charValue;
- (int) intValue;
- (float) floatValue;
- (BOOL) boolValue;
- (NSString *) stringValue;
NSNumber *num = [NSNumber numberWithInt:110];
NSInteger integer = [num intValue];
3、NSString与NSInteger的相互转换
NSInteger integer1 = 110;
NSString *intString = [NSString stringWithFormat:@"%ld",(long)integer1];
NSInteger integer = [intString intValue];
double double1 = 3.14159265358979;
NSString *doubleString = [NSString stringWithFormat:@"%f",double1];
double double2 = [doubleString doubleValue];