前言:C++不像python,创建变量的时候必须指定类型,这样才能给变量分配一个合适的内存空间。
2.1 整型
作用:整型变量表示的是整型类型的数据 整型的数据类型有4种(最常用的是int),其区别在于所占内存空间不同:
#include<iostream>
using namespace std;
int main()
{
short num1 = 32768;
int num2 = 10;
long num3 = 10;
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.2 sizeof关键字
作用:利用siezeof关键字可以统计数据类型所占内存大小 语法:sizeof{ 数据类型 / 变量 }
#include<iostream>
using namespace std;
int main()
{
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;
}
2.3 实型(浮点型)
作用:用于表示小数 浮点型变量分为两种: 单精度float, 双精度double 区别在于表示的有效数字范围不同。 在使用时,使用方法通常为
float f1 = 3.14f
如果不加f,默认是double型变量:
#include<iostream>
using namespace std;
int main()
{
float f1 = 3.1415926f;
cout << "f1=" << f1 << endl;
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;
}
2.4 字符型
作用:字符变量用于显示单个字符 语法: char ch=‘a’;
- C和C++中字符型变量只占用1个字节。
- 字符型变量并不是把字符本身放到内存中存储,而是将对应的ASCII编码放入到存储单元。
注:用单引号不要用双引号;单引号内只能有一个字符,不可以是字符串。
#include<iostream>
using namespace std;
int main()
{
char ch = 'a';
cout << ch << endl;
cout << "char字符型变量所占内存:" << sizeof(char) << endl;
cout <<"字符A的ASCII码值为:"<<(int)'A' << endl;
cout << "变量ch的ASCII码值为:" << (int)ch << endl;
system("pause");
return 0;
}
2.5 转义字符
作用:用于表示一些不能显示出来的ASCII字符 常用的就下面这些,其余可自行百度 语法:使用cout时直接加在字符串中。
#include<iostream>
using namespace std;
int main()
{
cout << "hello world\n"<<endl;
cout << "\\" << endl;
cout << "aaaa\ttheworld" << endl;
cout << "aaa\ttheworld" << endl;
cout << "aaaaaaaa\ttheworld" << endl;
cout << "aaaaaaaaa\ttheworld" << endl;
cout << "aaaaaaaaaaa\ttheworld" << endl;
system("pause");
return 0;
}
2.6 字符串型
作用:用于表示一串字符。 两种风格
-
C风格的字符串:char 变量名[ ] = “字符串值”; ——注意加[ ],不加[ ]的时候默认的是字符。 -
C++风格字符串:string 变量名 = “字符串值”;——注意加头文件#include
#include<iostream>
#include<string>
using namespace std;
int main()
{
char str[] = "hello world";
cout << str << endl;
string str2 = "hello world";
cout << str2 << endl;
system("pause");
return 0;
}
2.7 布尔类型 bool
作用:布尔数据类型代表真或假的值 bool类型只有两个值:
- true 真
- false 假
bool类型占一个字节
#include<iostream>
#include<string>
using namespace std;
int main()
{
bool flag = true;
cout << flag << endl;
flag = false;
cout << flag << endl;
cout <<"bool类型所占内存空间为:" << sizeof(bool) << endl;
system("pause");
return 0;
}
2.8 数据的输入
作用:从键盘获取数据 关键字:cin 语法:cin >> 变量
#include<iostream>
#include<string>
using namespace std;
int main()
{
int a = 0;
cout << "请给整型变量a赋值:" << endl;
cin >> a;
cout << "整型变量a=" << a << endl;
float f = 0.f;
cout << "请给浮点型变量f赋值:" << endl;
cin >> f;
cout << "浮点型变量f=" << f << endl;
char ch = ' ';
cout << "请给字符型变量ch赋值:" << endl;
cin >> ch;
cout << "字符型变量f=" << ch << endl;
string str = "abc";
cout << "请给字符串型变量str赋值:" << endl;
cin >> str;
cout << "字符串型变量str=" << str << endl;
bool flag = false;
cout << "请给布尔型变量flag赋值:" << endl;
cin >> flag;
cout << "布尔型变量flag=" << flag << endl;
system("pause");
return 0;
}
|