CPlusPlusThings/c++2.0/noexcept.cpp
Light-City 4f8b242a10 update
2019-11-05 17:27:32 +08:00

27 lines
774 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// Created by light on 19-11-3.
//
#include <iostream>
#include <vector>
using namespace std;
// noexcepte ()中可以加条件
// 异常可传递 a调用b b抛出异常,a没处理,就会抛出异常
// 1.异常的回传机制:调用foo如果抛出异常foo会接着往上层抛出异常
// 如果最上层没有处理则会调用terminate函数terminate函数内部调用abort使程序退出
// 2.在使用vector deque等容器的移动构造和移动赋值的时候如果移动构造和移动赋值没有加上noexcept
// 则容器增长的时候不会调用move constructor效率就会偏低所以后面需要加上noexcept安心使用。
void foo() noexcept(true) {
}
int main() {
foo();
vector<int> vec;
return 0;
}