IOS Number 處理(int–>NSNumber,NSNumber–>nsinteger,string –>double,CGFloat &

來源:互聯網
上載者:User

1 小結:

1)int-->NSNumber:numberWithInt

2)NSNumber-->nsinteger:integerValue

3)string -->double:initWithString

4)CGFloat --> dobule:initWithFloat,decimalobj doubleValue

5)使用NSInteger,因為這樣就不用考慮裝置是32位的還是64位的。

6)NSInteger是基礎類型,但是NSNumber是一個類。如果想要在NSMutableArray裡儲存一個數值,直接用NSInteger是不行的,比如在一個NSMutableArray裡面. 

7) NSString與NSInteger的相互轉換

    NSString * string = [NSString stringWithFormat:@"%d",integerNumber]; 

   integer = [string intValue]; 

 

static void numberTest(){

NSNumber *numObj = [NSNumber numberWithInt: 2];

NSLog(@"numObj=%@",numObj); 

NSInteger myInteger = [numObj integerValue];

    

NSLog(@"myInteger=%d",myInteger); 

int a = [numObj intValue];

NSLog(@"a=%d",a);

//浮點數值使用CGFloat,NSDecimalNumber對象進行處理:

NSDecimalNumber *myDecimalObj = [[NSDecimalNumber alloc] initWithString:@"23.30"]; 

NSLog(@"myDecimalObj doubleValue=%6.3f",[myDecimalObj doubleValue]); 

CGFloat myCGFloatValue = 43.4; 

NSDecimalNumber *myOtherDecimalObj = [[NSDecimalNumber alloc] initWithFloat:myCGFloatValue]; 

NSLog(@"myOtherDecimalObj doubleValue=%6.5f",[myOtherDecimalObj doubleValue]);

 

2 、C語言的基礎資料型別 (Elementary Data Type)長度

  1.   
  2.        NSLog(@"The size of an int is: %lu bytes.",sizeof(int));  
  3. NSLog(@"The size of a short int is: %lu bytes.",sizeof(short int));  
  4. NSLog(@"The size of a long int is: %lu bytes.",sizeof(long int));  
  5. NSLog(@"The size of a char is: %lu bytes.",sizeof(char));  
  6. NSLog(@"The size of a float is: %lu bytes.",sizeof(float));  
  7. NSLog(@"The size of a double is: %lu bytes.",sizeof(double));  
  8. NSLog(@"The size of a bool is: %lu bytes.",sizeof(bool));   // Do any additional setup after loading the view,  

結果:

  1. 2012-06-13 13:55:46.726 BaseType[3032:f803] The size of an int is: 4 bytes.  
  2. 2012-06-13 13:55:46.726 BaseType[3032:f803] The size of a short int is: 2 bytes.  
  3. 2012-06-13 13:55:46.727 BaseType[3032:f803] The size of a long int is: 4 bytes.  
  4. 2012-06-13 13:55:46.731 BaseType[3032:f803] The size of a char is: 1 bytes.  
  5. 2012-06-13 13:55:46.732 BaseType[3032:f803] The size of a float is: 4 bytes.  
  6. 2012-06-13 13:55:46.733 BaseType[3032:f803] The size of a double is: 8 bytes.  
  7. 2012-06-13 13:55:46.733 BaseType[3032:f803] The size of a bool is: 1 bytes.  

3、格式化輸出資料

  1. //整型   
  2.     int integerType = 5;  
  3.     //浮點型   
  4.     float floatType = 3.1415;  
  5.     //雙浮點型   
  6.     double doubleType = 2.2033;  
  7.     //短整型   
  8.     short int shortType = 200;  
  9.     //長整型   
  10.     long long int longlongType = 7758123456767L;  
  11.     //c語言字串   
  12.     char * cstring = "this is a string!";  
  13.       
  14.       
  15.     //整型   
  16.     NSLog(@"The value of integerType = %d",integerType);  
  17.     //浮點型   
  18.     NSLog(@"The value of floatType = %.2f",floatType);  
  19.     //雙浮點型   
  20.     NSLog(@"The value of doubleType = %e",doubleType);  
  21.     //短整型   
  22.     NSLog(@"The value of shortType = %hi",shortType);  
  23.     //長整型   
  24.     NSLog(@"The value of longlongType = %lli",longlongType);  
  25.     //c語言字串   
  26.     NSLog(@"The value of cstring = %s",cstring);  

 

結果:

  1. 2012-06-13 14:06:18.757 BaseType[3215:f803] The value of integerType = 5  
  2. 2012-06-13 14:06:18.757 BaseType[3215:f803] The value of floatType = 3.14  
  3. 2012-06-13 14:06:18.758 BaseType[3215:f803] The value of doubleType = 2.203300e+00  
  4. 2012-06-13 14:06:18.758 BaseType[3215:f803] The value of shortType = 200  
  5. 2012-06-13 14:06:18.758 BaseType[3215:f803] The value of longlongType = 7758123456767  
  6. 2012-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裡面這樣用:

  1. NSMutableArray *array = [[NSMutableArray alloc]init];  
  2.     [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;

例子:

  1. NSNumber *num = [NSNumber numberWithInt:88];  
  2.    NSInteger integer = [num intValue];  

5、NSString與NSInteger的相互轉換

  1. NSInteger integerNumber = 888;  
  2. NSString * string = [NSString stringWithFormat:@"%d",integerNumber];  
  3. NSLog(@"string is %@", string);      
 
  1. integer = [string intValue];  
  2. NSLog(@"integer is%d", integerNumber);  

 

char  float等類型一樣可以轉換 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.