各種資料型別OuO

2021-08-15 02:56:44 字數 984 閱讀 8038

char

1 個位元組

-128 到 127 或者 0 到 255

unsigned char

1 個位元組

0 到 255

signed char

1 個位元組

-128 到 127

int4 個位元組

-2147483648 到 2147483647

unsigned int

4 個位元組

0 到 4294967295

signed int

4 個位元組

-2147483648 到 2147483647

short int

2 個位元組

-32768 到 32767

unsigned short int

2 個位元組

0 到 65,535

signed short int

2 個位元組

-32768 到 32767

long int

8 個位元組

-9,223,372,036,854,775,808 到 9,223,372,036,854,775,807

signed long int

8 個位元組

-9,223,372,036,854,775,808 到 9,223,372,036,854,775,807

unsigned long int

8 個位元組

0 to 18,446,744,073,709,551,615

float

4 個位元組

+/- 3.4e +/- 38 (~7 個數字)

double

8 個位元組

+/- 1.7e +/- 308 (~15 個數字)

long double

16 個位元組

+/- 1.7e +/- 308 (~15 個數字)

wchar_t

2 或 4 個位元組

1 個寬字元

Qt 各種資料型別轉換

1 qstring string qstring.tostdstring 2 string qstring qstring fromstdstring string 3 qstring int,double,char qstring toint qstring todouble qstring.to...

C 各種資料型別轉換

在在做一些互操作的時候往往需要一些型別的相互轉換,比如用c 訪問win32api的時候往往需要向api中傳入dword引數 即 uint引數這些數值所表示的資料在實際的應用中可能需要以字元的形式顯示,但是c 對api的關係無法跟c 相比,所以在c 中進行一些型別資料的轉換十分必要了,下面將用到的一些...

js 判斷各種資料型別

了解js的都知道,有個typeof 用來判斷各種資料型別,有兩種寫法 typeof typeof 如下例項 typeof 2 輸出 number typeof null 輸出 object typeof 輸出 object typeof 輸出 object typeof function 輸出 fu...