首頁 > 軟體

C++的資料型別你真的瞭解嗎

2022-02-15 19:00:19

前言

C++不像python,建立變數的時候必須指定型別,這樣才能給變數分配一個合適的記憶體空間。

1 整型

作用:整型變數表示的是整型型別的資料

整型的資料型別有4種(最常用的是int),其區別在於所佔記憶體空間不同:

#include<iostream>
using namespace std;
int main()
{
	//整型
	//1.短整型
	short num1 = 32768;
	//2.整型
	int num2 = 10;
	//3.長整型
	long num3 = 10;
	//4.長長整型
	long long num4 = 10;
	cout << "num1=" << num1 << endl;
	cout << "num2=" << num2 << endl;
	cout << "num3=" << num3 << endl;
	cout << "num4=" << num4 << endl;
	system("pause");
	return 0;
}

因為短整型取值範圍為-32768-32767,所以注意數值溢位,當數值溢位時,取二補數。

當如下定義時:

short num1 = 32768

輸出為

num1=-32768

2 sizeof關鍵字

作用:利用siezeof關鍵字可以統計資料型別所佔記憶體大小語法:

sizeof{資料型別/變數}
#include<iostream>
using namespace std;
int main()
{
	//利用sizeof求出資料型別佔用大小
	short num1 = 10;
	int num2 = 10;
	long num3 = 10;
	long long num4 = 10;
	cout << "short佔用記憶體空間為:" << sizeof(short) << endl;
	cout << "num1佔用記憶體空間為:" << sizeof(num1) << endl;
	cout << "int佔用記憶體空間為:" << sizeof(int) << endl;
	cout << "num2佔用記憶體空間為:" << sizeof(num2) << endl;
	cout << "long佔用記憶體空間為:" << sizeof(long) << endl;
	cout << "num3佔用記憶體空間為:" << sizeof(num3) << endl;
	cout << "long long佔用記憶體空間為:" << sizeof(long long) << endl;
	cout << "num4佔用記憶體空間為:"      << sizeof(num4)      << endl;
	system("pause");
	return 0;
}

3 實型(浮點型)

作用:用於表示小數

浮點型變數分為兩種:

  • 單精度float, 雙精度double
  • 區別在於表示的有效數位範圍不同。

在使用時,使用方法通常為

float f1 = 3.14f

如果不加f,預設是double型變數:

#include<iostream>
using namespace std;
int main()
{	//預設情況下,輸出一個小數,會顯示最多6位有效數位
	//1.單精度
	float f1 = 3.1415926f;
	cout << "f1=" << f1 << endl;
	//2.雙精度
	double d1 = 3.1415926;
	cout << "d1=" << d1 << endl;
	//佔用記憶體檢視
	cout << "float佔用記憶體空間為:" << sizeof(float) << endl;
	cout << "double佔用記憶體空間為:" << sizeof(double) << endl;
	//科學計數法
	float f2 = 3e2f;
	cout << "f2=" << f2 << endl;
	float f3 = 3e-2f;
	cout << "f3=" << f3 << endl;
	system("pause");
	return 0;
}

4 字元型

作用:字元變數用於顯示單個字元

語法:char ch=‘a’;

1.C和C++中字元型變數只佔用1個位元組。

2.字元型變數並不是把字元本身放到記憶體中儲存,而是將對應的ASCII編碼放入到儲存單元。

:用單引號不要用雙引號;單引號內只能有一個字元,不可以是字串。

#include<iostream>
using namespace std;
int main()
{
	//字元型變數建立方式
	char ch = 'a';
	cout << ch << endl;
	//字元型變數所佔記憶體大小
	cout << "char字元型變數所佔記憶體:" << sizeof(char) << endl;
	//字元型變數常見錯誤
	// char ch2="b";
	// char ch2='abc';
	//字元型變數對應ASCII編碼
	cout <<"字元A的ASCII碼值為:"<<(int)'A' << endl;
	cout << "變數ch的ASCII碼值為:" << (int)ch << endl;
	system("pause");
	return 0;
}

5 跳脫字元

作用:用於表示一些不能顯示出來的ASCII字元

常用的就下面這些,其餘可自行百度

語法:使用cout時直接加在字串中。

#include<iostream>
using namespace std;
int main()
{	//換行符 n
	cout << "hello worldn"<<endl;
	//反斜槓       
	cout << "\" << endl;
	/*水平製表符 t  
	使用空格補齊位置,使得所佔位置為8的倍數
	輸入正好為8個時,輸出會多8個空格	*/
	cout << "aaaattheworld" << endl;
	cout << "aaattheworld" << endl;
	cout << "aaaaaaaattheworld" << endl;
	cout << "aaaaaaaaattheworld" << endl;
	cout << "aaaaaaaaaaattheworld" << endl;
	
	system("pause");
	return 0;
}

6 字串型

作用:用於表示一串字元。

兩種風格

1.C風格的字串:char 變數名[ ] = “字串值”; ——注意加[ ],不加[ ]的時候預設的是字元。

2.C++風格字串:string 變數名 = “字串值”;——注意加標頭檔案#include

#include<iostream>#include<string>using namespace std;int main(){//1.C風格字串,注意加中括號[]char str[] = "hello world";cout << str << endl;//2.C++風格字串,注意加標頭檔案#include<string>string str2 = "hello world";cout << str2 << endl;system("pause");return 0;}#include<iostream>
#include<string>
using namespace std;
int main()
{	
	//1.C風格字串,注意加中括號[]
	char str[] = "hello world";
	cout << str << endl;
	//2.C++風格字串,注意加標頭檔案#include<string>
	string str2 = "hello world";
	cout << str2 << endl;
	system("pause");
	return 0;
}

7 布林型別 bool

作用:布林資料型別代表真或假的值
bool型別只有兩個值:

1.true 真

2.false 假

bool型別佔一個位元組

#include<iostream>#include<string>using namespace std;int main(){//1.建立bool資料型別bool flag = true;cout << flag << endl;flag = false;cout << flag << endl;//本質是1就是真,0就是假。//2.檢視bool型別所佔記憶體空間cout <<"bool型別所佔記憶體空間為:" << sizeof(bool) << endl;system("pause");return 0;}#include<iostream>
#include<string>
using namespace std;
int main()
{
	//1.建立bool資料型別
	bool flag = true;
	cout << flag << endl;
	flag = false;
	cout << flag << endl;
	//本質是1就是真,0就是假。
	//2.檢視bool型別所佔記憶體空間
	cout <<"bool型別所佔記憶體空間為:" << sizeof(bool) << endl;
	system("pause");
	return 0;
}

8 資料的輸入

作用:從鍵盤獲取資料

關鍵字:cin

語法:

cin >> 變數
#include<iostream>
#include<string>
using namespace std;
int main()
{
	//1.整型
	int a = 0; //儘量初始化,如果不初始化在使用或者列印它時都會報錯。
	cout << "請給整型變數a賦值:" << endl;
	cin >> a;
	cout << "整型變數a=" << a << endl;
	//2.浮點型
	float f = 0.f; 
	cout << "請給浮點型變數f賦值:" << endl;
	cin >> f;
	cout << "浮點型變數f=" << f << endl;
	//3.字元型
	char ch = ' ';
	cout << "請給字元型變數ch賦值:" << endl;
	cin >> ch;
	cout << "字元型變數f=" << ch << endl;
	//4.字串型
	string str = "abc";
	cout << "請給字串型變數str賦值:" << endl;
	cin >> str;
	cout << "字串型變數str=" << str << endl;
	//5.布林型,用數位表示真假,只要輸入不是0,那麼就是1
	bool flag = false;
	cout << "請給布林型變數flag賦值:" << endl;
	cin >> flag;
	cout << "布林型變數flag=" << flag << endl;
	system("pause");
	return 0;
}

總結

本篇文章就到這裡了,希望能夠給你帶來幫助,也希望您能夠多多關注it145.com的更多內容!       


IT145.com E-mail:sddin#qq.com