前言:之前一直使用python,现在会用到C++,所以从0开始学习,在这里做个简单记录,希望能帮到同样需要学习C++的人。
学习方式:书籍《C++17 入门经典(第五版)》加上自我总结的方式
第一章 基本概念
c++ 17:发布时间 2017年12月6日
c++ 20(最新):发布时间 2020年12月7日
面向对象编程
c++程序:
源文件.cpp和头文件.h
预处理指令和标准库头文件:#include <iostream>
语句以分号结束
#include <iostream>
// 必须要有main函数
int main()
{
std::cout << "hello world!" << std::endl;
return 0; // 结束语句
}
变量命名:
1、包含大小写拉丁字母A~Z,a~z,数字0~9,下划线_
2、必须以字母或下划线开头
3、区分大小写
程序运行流程:
预处理(将#include头文件复制到.cpp)--- 编译(将.cpp文件编译成机器码)--- 链接(将各个文件合并到可执行文件)
第二章 基本数据类型
整性:4个字节
int age {10}; // 定义一个整性变量叫age,初始化值为10
int a {1};
int b {2};
int c {a + b}; // 可以初始化两个变量之和
int d (5); // 可以使用小括号初始化
int e = 6; // 可以使用等号
int cats_count {}; // 初始化cats_count为0,相当于int cats_count {0},这里省略了0
const t_count {10}; // 定义不可修改的变量
sizeof:占用字节数
返回类型size_t,相当于不带符号整数
递增运算符++和递减运算符--
前缀形式++a,先a+1再执行运算
后缀形式a++,先a执行运算,再a+1
#include <iostream>
using namespace std;
int main()
{
int a {1};
int b {1};
int c = ++a * 5;
int d = b++ * 5;
cout << "a = " << a << std::endl; // a = 2
cout << "b = " << b << std::endl; // b = 2
cout << "c = " << c << std::endl; // c = 10
cout << "d = " << d << std::endl; // d = 5
return 0;
}
浮点数
float:4字节
double:8字节
数学运算标准库cmath
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int a {-1};
cout << abs(a) << endl; // abs(a) = 1
cout << pow(2, 4) << endl; // 2^4 = 16
cout << sqrt(16) << endl; // 根号16 = 4
cout << round(4.4) << endl; // 四舍五入 4
return 0;
}
输出格式
setprecision(n)在标准库<iomanip>中,设置输出位数
#include <iostream>
#include <cmath>
#include <iomanip>
using namespace std;
int main()
{
float a {4.222};
cout << setprecision(2) << a << endl; // a = 4.2,setprecision(n)设置小数点后位数为n
return 0;
}
fixed
打印float,默认是科学计数法,可以用fixed显示原来的值,fixed保留6位小数,可以结合setprecision(n)使用
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
float a = 1414234235;
float b = 2354353632;
cout << a << endl; // 1.41423e+09
cout << b << endl; // 2.35435e+09
cout << fixed << a << endl; // 1414234240.000000
cout << fixed << b << endl; // 2354353664.000000
cout << fixed << setprecision(2) << a << endl; // 1414234240.00
cout << fixed << setprecision(2) << b << endl; // 2354353664.00
}
boolalpha
正常情况bool类型打印出来是0或1,可以用boolalpha打印出false或true
#include <iostream>
using namespace std;
int main()
{
cout << (1 > 2) << endl; // 0
cout << (2 > 1) << endl; // 1
cout << boolalpha << (1 > 2) << endl; // false
cout << boolalpha << (2 > 1) << endl; // true
}
显示类型转换
static_cast<type>(value):将value强制转换成type类型
#include <iostream>
using namespace std;
int main()
{
float a {4.222};
float b{ 5.21234 };
int c{0};
c = static_cast<int>(a) + static_cast<int>(b);
cout << c << endl; // c = 9;
return 0;
}
数值上下限标准库<limits>
numeric_limits<type>::max()和numeric_limits<type>::min()
#include <iostream>
#include <limits>
using namespace std;
int main()
{
cout << numeric_limits<int>::max() << endl; // 2147483647
cout << numeric_limits<int>::min() << endl; // -2147483648
cout << numeric_limits<unsigned int>::max() << endl; // 4294967295
cout << numeric_limits<unsigned int>::min() << endl; // 0
cout << numeric_limits<float>::max() << endl; // 3.40282e+38
cout << numeric_limits<float>::min() << endl; // 1.17549e-38
cout << numeric_limits<double>::max() << endl; // 1.79769e+308
cout << numeric_limits<double>::min() << endl; // 2.22507e-308
return 0;
}
字符变量char
#include <iostream>
#include <limits>
using namespace std;
int main()
{
char a{ 33 };
cout << a << endl; // ! 33所对应的ASCII码
return 0;
}
宽字符wchar_t wch {L'z'};
后面加L
对应wcin和wcout来读写wchar_t
国际字符集
char16_6 letter {u'B'}; \\ 小写字符u,代表UTF-16
char32_t letter {U'B'}; \\ 大写字符U,代表UTF-32
auto需要编译器推断类型