您好,登錄后才能下訂單哦!
本篇內容主要講解“C++的數據類型怎么正確使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++的數據類型怎么正確使用”吧!
C++不像python,創建變量的時候必須指定類型,這樣才能給變量分配一個合適的內存空間。
作用:整型變量表示的是整型類型的數據
整型的數據類型有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
作用:利用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; }
作用:用于表示小數
浮點型變量分為兩種:
單精度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; }
作用:字符變量用于顯示單個字符
語法: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 ch3="b"; // char ch3='abc'; //字符型變量對應ASCII編碼 cout <<"字符A的ASCII碼值為:"<<(int)'A' << endl; cout << "變量ch的ASCII碼值為:" << (int)ch << endl; system("pause"); return 0; }
作用:用于表示一些不能顯示出來的ASCII字符
常用的就下面這些,其余可自行百度
語法:使用cout時直接加在字符串中。
#include<iostream> using namespace std; int main() { //換行符 \n cout << "hello world\n"<<endl; //反斜杠 \ cout << "\\" << endl; /*水平制表符 \t 使用空格補齊位置,使得所占位置為8的倍數 輸入正好為8個時,輸出會多8個空格 */ cout << "aaaa\ttheworld" << endl; cout << "aaa\ttheworld" << endl; cout << "aaaaaaaa\ttheworld" << endl; cout << "aaaaaaaaa\ttheworld" << endl; cout << "aaaaaaaaaaa\ttheworld" << endl; system("pause"); return 0; }
作用:用于表示一串字符。
兩種風格
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; }
作用:布爾數據類型代表真或假的值
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; }
作用:從鍵盤獲取數據
關鍵字: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; }
到此,相信大家對“C++的數據類型怎么正確使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。