c 基礎知識 資料型別

2022-09-11 10:03:12 字數 2298 閱讀 4750

1.每次新建項都可需寫內容

#include using

namespace

std;

int main() //

main函式有且只有乙個

2.變數建立

//

變數建立: 資料型別 變數名=變數初始值

int a = 10;

3.常量建立

//

1.巨集常量 :#define 常量名 常量值

修飾的變數

#include

#define day 31

intmain1()

4.統計資料型別記憶體大小

//

語法:sizeof(資料型別/變數)

short numl = 10

; cout

<< '

numl

'<< sizeof(numl) <

cout

<< '

numl

'<< sizeof(short) << endl;

資料型別

位元組大小

short

2位元組int

1位元組long     

4位元組(linux 32位是4位元組,64位8位元組)

long long

8位元組char

1位元組string

>=1位元組 (和字串長度有關)

bool 

1位元組float  

4位元組double 

8位元組注意事項:

1)浮點數型別預設輸出顯示的是乙個6位有效數字,float預設是雙精度浮點數,單精度後面加f:float f = 3.1432f;

2)字元型 char 用單引號,只能有乙個字元: char ch = 『a』;

3)字串型:

//

c語言風格

char str = "

hello world

";//

char 變數ming = "";

//c++語言風格

#include

string str1 = "

hellp world

"; //

標頭檔案+string 變數名 = "";

4)布林型 bool 非0值都為真,即為true或1;true對應1,false對應0;

5.資料的輸入

#include//

語法 cin >> 變數

intmain()

translate with

xenglish

arabic

hebrew

polish

bulgarian

hindi

portuguese

catalan

hmong daw

romanian

chinese simplified

hungarian

russian

chinese traditional

indonesian

slovak

czech

italian

slovenian

danish

japanese

spanish

dutch

klingon

swedish

english

korean

thai

estonian

latvian

turkish

finnish

lithuanian

ukrainian

french

malay

urdu

german

maltese

vietnamese

greek

norwegian

welsh

haitian creole

persian

translate with

copy the url below

back

embed the snippet below in your site

" readonly>

enable collaborative features and customize widget: bing webmaster portal

back

拷貝拷貝

Redis基礎知識 資料型別

redis支援5種資料型別 字串 string 雜湊 hash 列表 list 集合 set 有序集合 sorted set string 是 redis最基本的型別,乙個key對應乙個value,string可以包含任何資料,比如jpg或者序列化的物件,string是redis最基本的型別,乙個鍵...

MySql基礎知識 資料型別

整數型別 位元組最小值 最大值tinyint 1有符號 128,無符號 0 有符號127,無符號255 smallint 2有符號 32768,無符號 0 有符號 32767,無符號 65535 mediumint 3有符號 8388608,無符號 0 有符號 8388607,無符號 1677215...

SQL (MySQL)基礎知識 資料型別

整型浮點型,例如double 3,2 表示最多3位,其中必須有2位小數,即最大值為9.99 浮點型,字串儲存,表單錢方面推薦使用,不會出現精度缺失問題 固定長度字串型別,最多255個字元,資料長度不足指定長度,補足到指定長度 可變長度字串型別,備忘錄推薦使用,如果值的長度大於 255,則被轉換為te...