OC 中常用的占位符

char   %c 

short int  %hi %hx %ho 

unsigned short int %hu %hx %ho 

int  %i %x %o 

unsigned int %u %x %o 

long int  %li %lx %lo 

unsigned long int  %lu %lx %lo 

long long int  %lli %llx &llo 

unsigned long long int  %llu %llx %llo 

float %f %e %g %a 

double  %f %e %g %a 

long double %Lf $Le %Lg 

id %p 

bool %d 0表真,1表假 

%@ 对象

%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位双数

你可能感兴趣的:(iOS)