本篇部落客要介紹基礎資料型別 (Elementary Data Type)的長度,基礎資料型別 (Elementary Data Type)在Oc的數組中如何使用,還有其他資料類型的相互轉換等。
為了示範基礎資料型別 (Elementary Data Type)的例子,我們建立一個iPhone項目類做例子
1、建立項目
為了方便,我們建立一個Single View Application 。
輸入項目名稱 BaseType
Product Name: 指產品名稱 ,類似於項目名稱。
Company Identifier: 公司標識符,一般命名規則為 “com.公司名”
Bundle Identifier: 指包標識符,用於唯一標識應用程式,預設會根據公司標識符和產品名來組合產生
Device Family: 指該應用支援的裝置類型,共三個選項:iPhone、iPad、Universal(即iPhone、iPad通用)
Include Unite Tests: 是否包含單元測試代碼模板,如果勾選,Xcode會協助產生單元測試代碼模板
在項目裡找到,ViewController.m 為了方便示範,在介面啟動時,我們加入測試代碼
2 、C語言的基礎資料型別 (Elementary Data Type)長度
NSLog(@"The size of an int is: %lu bytes.",sizeof(int)); NSLog(@"The size of a short int is: %lu bytes.",sizeof(short int)); NSLog(@"The size of a long int is: %lu bytes.",sizeof(long int)); NSLog(@"The size of a char is: %lu bytes.",sizeof(char)); NSLog(@"The size of a float is: %lu bytes.",sizeof(float)); NSLog(@"The size of a double is: %lu bytes.",sizeof(double)); NSLog(@"The size of a bool is: %lu bytes.",sizeof(bool)); // Do any additional setup after loading the view,
運行結果:
2012-06-13 13:55:46.726 BaseType[3032:f803] The size of an int is: 4 bytes.2012-06-13 13:55:46.726 BaseType[3032:f803] The size of a short int is: 2 bytes.2012-06-13 13:55:46.727 BaseType[3032:f803] The size of a long int is: 4 bytes.2012-06-13 13:55:46.731 BaseType[3032:f803] The size of a char is: 1 bytes.2012-06-13 13:55:46.732 BaseType[3032:f803] The size of a float is: 4 bytes.2012-06-13 13:55:46.733 BaseType[3032:f803] The size of a double is: 8 bytes.2012-06-13 13:55:46.733 BaseType[3032:f803] The size of a bool is: 1 bytes.
3、格式化輸出資料
//整型 int integerType = 5; //浮點型 float floatType = 3.1415; //雙浮點型 double doubleType = 2.2033; //短整型 short int shortType = 200; //長整型 long long int longlongType = 7758123456767L; //c語言字串 char * cstring = "this is a string!"; //整型 NSLog(@"The value of integerType = %d",integerType); //浮點型 NSLog(@"The value of floatType = %.2f",floatType); //雙浮點型 NSLog(@"The value of doubleType = %e",doubleType); //短整型 NSLog(@"The value of shortType = %hi",shortType); //長整型 NSLog(@"The value of longlongType = %lli",longlongType); //c語言字串 NSLog(@"The value of cstring = %s",cstring);
結果:
2012-06-13 14:06:18.757 BaseType[3215:f803] The value of integerType = 52012-06-13 14:06:18.757 BaseType[3215:f803] The value of floatType = 3.142012-06-13 14:06:18.758 BaseType[3215:f803] The value of doubleType = 2.203300e+002012-06-13 14:06:18.758 BaseType[3215:f803] The value of shortType = 2002012-06-13 14:06:18.758 BaseType[3215:f803] The value of longlongType = 77581234567672012-06-13 14:06:18.758 BaseType[3215:f803] The value of cstring = this is a string!
4、 int,NSInteger,NSUInteger,NSNumber
1.當需要使用int類型的變數的時候,可以像寫C的程式一樣,用int,也可以用NSInteger,但更推薦使用NSInteger,因為這樣就不用考慮裝置是32位的還是64位的。
2.NSUInteger是無符號的,即沒有負數,NSInteger是有符號的。
3.有人說既然都有了NSInteger等這些基礎類型了為什麼還要有NSNumber?它們的功能當然是不同的。
NSInteger是基礎類型,但是NSNumber是一個類。如果想要在NSMutableArray裡儲存一個數值,直接用NSInteger是不行的,比如在一個NSMutableArray裡面這樣用:
NSMutableArray *array = [[NSMutableArray alloc]init];
[array addObject:[NSNumber numberWithInt:88]];
這樣是會引發編譯錯誤的,因為NSMutableArray裡面放的需要是一個類,但‘88’不是類。
Cocoa提供了NSNumber類來封裝(即以對象形式實現)基礎資料型別 (Elementary Data Type)。
例如以下建立方法:
+ (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:88]; NSInteger integer = [num intValue];
5、NSString與NSInteger的相互轉換
NSInteger integerNumber = 888; NSString * string = [NSString stringWithFormat:@"%d",integerNumber]; NSLog(@"string is %@", string);
integer = [string intValue]; NSLog(@"integer is%d", integerNumber);
char float等類型一樣可以這樣轉換。