码迷,mamicode.com
首页 > 其他好文 > 详细

error: no matching function for call to 'std::exception:exception(const char[16])'

时间:2019-03-07 17:34:30      阅读:423      评论:0      收藏:0      [点我收藏+]

标签:call   sof   strong   isp   error:   str   queue   const   error   

环境:codeblocks

语言:C++

在执行:throw new exception("queue is empty.");

遇到问题:error: no matching function for call to ‘std::exception:exception(const char[16])‘

解决办法:修改为

std::logic_error e("xxx.");
throw std::exception(e);

error: no matching function for call to 'std::exception:exception(const char[16])'

标签:call   sof   strong   isp   error:   str   queue   const   error   

原文地址:https://www.cnblogs.com/zkfopen/p/10490897.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!