NO1 基本資料型別

2021-08-20 19:03:05 字數 407 閱讀 9057

資料型別是什麼?

資料型別就是固定記憶體大小的別名,是建立變數的模子。

常見的資料型別有哪些?大小為多大?

常見的型別有char(乙個位元組)short(兩個位元組)int(四個位元組)long(四個位元組)float(四個位元組)double(八個位元組)

在不同的系統中相同的資料類所代表的記憶體大小可能不一樣,如下表:

說到底變數就是一段連續儲存空間的別名,可以通過別名來申請儲存空間,然後通過別名來使用儲存空間。

自定義資料型別

使用關鍵字typedef:使用方法typedef  int  int32

新定義的資料型別為int32,記憶體大小為4位元組。

1 基本資料型別

python 3支援int float bool complex 複數 a,b,c,d 20,5.5,true,3 4jprint type a type b type c type d class int class float class bool class complex a 4 5 加法 ...

object c 基本資料型別 1

資料型別 整形 int short int long int unsigned int unsigned short unsigned long nslog 整形 nslog lu sizeof int 整形4個位元組 nslog lu sizeof short int 短整形2 nslog lu ...

python基本資料型別(1)

基本資料型別包括有數字 int 字串 str 列表 list 元組 tuple 字典 dict 布林值 bool 數字型別 int python3版本沒有對數字型別大小限制,統一歸為int python2版本中有int和long int d區別。兩個基本功能 int 將字串轉化為int數字。例如 1...