Objective C中的基本資料型別

2021-06-20 11:41:01 字數 3251 閱讀 5880

//

// main.m

// 01.基本資料型別

//// created by zhangqs008 on 14-2-13.

//#import int main(int argc, const char * argv)

return 0;

}

輸出結果:

2014-02-13 21:19:33.633 01.基本資料型別[1463:303] 01.基本資料型別長度

2014-02-13 21:19:33.634 01.基本資料型別[1463:303] the size of an int is: 4 bytes.

2014-02-13 21:19:33.635 01.基本資料型別[1463:303] the size of a short int is: 2 bytes.

2014-02-13 21:19:33.635 01.基本資料型別[1463:303] the size of a long int is: 8 bytes.

2014-02-13 21:19:33.635 01.基本資料型別[1463:303] the size of a char is: 1 bytes.

2014-02-13 21:19:33.636 01.基本資料型別[1463:303] the size of a float is: 4 bytes.

2014-02-13 21:19:33.636 01.基本資料型別[1463:303] the size of a double is: 8 bytes.

2014-02-13 21:19:33.636 01.基本資料型別[1463:303] the size of a bool is: 1 bytes.

2014-02-13 21:19:33.637 01.基本資料型別[1463:303] 02.格式化輸出

2014-02-13 21:19:33.637 01.基本資料型別[1463:303] the value of integertype = 5

2014-02-13 21:19:33.637 01.基本資料型別[1463:303] the value of floattype = 3.14

2014-02-13 21:19:33.638 01.基本資料型別[1463:303] the value of doubletype = 2.203300e+00

2014-02-13 21:19:33.639 01.基本資料型別[1463:303] the value of shorttype = 200

2014-02-13 21:19:33.639 01.基本資料型別[1463:303] the value of longlongtype = 7758123456767

2014-02-13 21:19:33.640 01.基本資料型別[1463:303] the value of cstring = this is a string!

2014-02-13 21:19:33.640 01.基本資料型別[1463:303] 03.nsstringnsinteger的相互轉換

2014-02-13 21:19:33.640 01.基本資料型別[1463:303] string is 888

2014-02-13 21:19:33.641 01.基本資料型別[1463:303] integer is 888

program ended with exit code: 0 

附:格式化輸出符號:

%@          物件

%d, %i     整數

%u            無符整形

%f             浮點/雙字

%x, %x    二進位制整數

%o            八進位制整數

%zu          size_t

%p           指標

%e           浮點/雙字 (科學計算)

%g           浮點/雙字

%s            c 字串

%.*s         pascal字串

%c           字元

%c          unichar

%lld         64位長整數(long long)

%llu        無符64位長整數

%lf         64位雙字

%e          實數,用科學計數法計 

Objective C之基本資料型別

整型 int integertype 5 浮點型 float floattype 3.1415 雙浮點型 double doubletype 2.2033 短整型 short int shorttype 200 長整型 long int longlongtype 7758123456767l c語言...

Objective c的4種基本資料型別

objective c主要分為四種基本資料型別 整型 short int 記憶體中佔16位 2個位元組 mac中 2個位元組 ios int 記憶體中佔32位 4 個位元組 mac中 4個位元組 ios long int 記憶體中佔64位 8個位元組 mac中 4個位元組 ios long long...

Objective C語法之基本資料型別

格式化字串 物件 d,i 整數 u 無符整形 f 浮點 雙字 x,x 二進位制整數 o 八進位制整數 zu size t p 指標 e 浮點 雙字 科學計算 g 浮點 雙字 s c 字串 s pascal字串 c 字元 c unichar lld 64位長整數 long long llu 無符64位...