能力值:
( LV6,RANK:90 )
|
-
-
2 楼
vc++.net 2003
printf("sizeof(bool)=%d\nsizeof(BOOL)=%d==sizeof(int)=%d\n",sizeof(bool),sizeof(BOOL),sizeof(int));
printf("true=%d\tfalse=%d\nTRUE=%d\tFALSE=%d\n",true,false,TRUE,FALSE);
sizeof(bool)=1
sizeof(BOOL)=4==sizeof(int)=4 //windef.h typedef int BOOL;
true=1 false=0
TRUE=1 FALSE=0 /* afx.h #define FALSE 0
#define TRUE 1 */
|
能力值:
( LV6,RANK:90 )
|
-
-
3 楼
sizeof(bool)=1B=8bit
sizeof(BOOL)=4B=32bit
|
能力值:
( LV2,RANK:10 )
|
-
-
4 楼
谢谢!
请问在VBA中呢?
|
能力值:
( LV6,RANK:90 )
|
-
-
5 楼
不懂
不过bool值一般false=0,true=1(或-1)
|
|
|