其他分享
首页 > 其他分享> > std::bad_alloc 异常产生原因之一

std::bad_alloc 异常产生原因之一

作者:互联网

const std::string &test()
{
    return "123456";
}

void main()
{
    auto str = test();
}

调用上面的test()函数就会产生std::bad_alloc 异常,原因是return时构造了内容为123456的std::string变量,返回引用后变量就被析构了,再访问这个引用就会出现这个异常。

总结:const std::string &用来返回类的成员变量时效率高,不用重新构造返回的std::string, 但非成员变量时要注意这种情况。作为传参时倒是无所谓,const std::string &作为传参减少构造效率高。

标签:std,alloc,const,string,bad,test,123456,变量
来源: https://blog.csdn.net/qq_24977505/article/details/120703071