3 1 資料型別之int型別

2021-10-20 13:24:08 字數 386 閱讀 7349

1. 介紹int有幾種型別,short int,int, long int,還有對應的無符號,注意 int 和 long int 的位元組數相同

2. sizeof(short int),查詢short int的位元組數

3. 介紹一下int型別的數字範圍,+0和-0的補碼,把-0的補碼拿去當最小值了,所以負值比正值多乙個數,-2^31 ~ 2^31-1 (2^31-1 = 2147483647)

4. 不同int型別對應的輸出符號,比如 %d 對應 int, %llu 對應 long long unsigned int,無符號的都是 %u,%x對應16進製制,%o對應八進位制

#include #include int main() 

python資料型別之int型別

python提供了兩種內建的int型別,即int與bool 整數與布林型值都是固定的。在布林表示式中,0與false表示false,其他任意整數與true都表示true。在數字表示式中,true表示1,false表示0。整數 整數的大小只受於機器的記憶體大小,預設以十進位制,二進位制以0b引導,八進...

資料型別轉換之 int 與 LPCTSTR

總結了網上的幾種方法 1.指標操作 這種方法可能適用於傳引數時用,但是像messagebox函式中就不適用 lpctstr p int x 100 p lpctstr x 2.format 函式 int number 1 cstring t t.format t d number afxmessag...

mysql tinyint和int資料型別的區別

tinyint smallint mediumint int bigint都是mysql的資料型別,字面意思上從左到右從小到大。具體範圍上比較 tinyint 128,127 smallint 32 768,32 767 mediumint 8 388 608,8 388 607 int 2 147...