C11-noexcept
程序员文章站
2024-03-14 11:19:16
...
SHOW_SMALL_FUNCTION_BLOCK_TIPS("noexcept")
{
//关键字跟在函数后面,意思是不抛出异常
//正常情况下,vector如果在你自定义类对象增加时自增长,那么调用你的默认拷贝构造函数。
//如果你要进行优化在vextor的自增长时使用右值引用(移动)的构造函数
//那你就需要写一个这个函数,这个函数优先级比较高,会优先调用
//vector成长时会调用
class Test
{
int a = 0;
int b = 0;
public:
Test()
{}
Test(Test&& test)noexcept
{
cout << "Test(Test&& test)noexcept" << endl;
}
~Test()
{}
private:
};
vector<Test> t;
cout << "加入1个" << endl;
t.push_back(Test());
cout << "加入1个" << endl;
t.push_back(Test());
cout << "加入1个" << endl;
t.push_back(Test());
cout << "加入1个" << endl;
t.push_back(Test());
cout << "加入1个" << endl;
t.push_back(Test());
cout << "加入1个" << endl;
t.push_back(Test());
//cout << typeid(decltype(t)::value_type).name() << endl;
}
推荐阅读