当我BOOL用于32位时,我得到:
BOOL b1=8960; //b1 == NO
bool b2=8960; //b2 == true
Run Code Online (Sandbox Code Playgroud)
但对于64位,我得到:
BOOL b1=8960; //b1 == YES
bool b2=8960; //b2 == true
Run Code Online (Sandbox Code Playgroud)
发生了什么变化大约BOOL从32位到64位?