ios基本数据类型

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

基本数据类型

  • int:整型 格式化输出使用%i,%o八进制,%#x十六进制

  • float:浮点型 格式化输出%f(保留六个小数),%e科学计数法,%g 浮点数

  • double:双精度浮点型 格式化输出与float相同

  • char:单字符 格式化输出%c

限定词,限定词可以在加在基本数据类型前面,用来增强基本数据

  • short:短整型 如short int,格式化输出%i

  • long:长整型 格式化输出%i,如ong int或long long int格式化输出%li或%lli

  • signed:有符号的类型

  • unsigned:无符号类型

其他

  • id:通用指针

  • enum:枚举

  • struct:结构体

  • union:共用体

  • void:空



转载于:https://my.oschina.net/u/2406628/blog/550659

你可能感兴趣的:(ios基本数据类型)