[OC学习笔记]数据类型

类型 NSLog字符
char %c
short int %hi %hx %ho
unsigned short int %hu %hx %ho%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
NSString %@

你可能感兴趣的:(oc)