linux – 替代std :: exception(const char *)非标准构造函数

前端之家收集整理的这篇文章主要介绍了linux – 替代std :: exception(const char *)非标准构造函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的Visual C代码使用接受字符串的std :: exception构造函数,我试图将代码移植到 Linux / G.我应该使用什么异常类?

解决方法

Microsoft Visual C的std :: exception(const char *)构造函数是非标准的.在C标准库中,std :: exception具有一个const char * what()const方法,它不提供指定字符串的方式,除了覆盖.

您应该重写代码以使用std :: runtime_error或其他类别从< stdexcept>作为替代.捕获std :: exception的现有代码当然不需要更改,因为std :: runtime_error从中导出.

原文链接:https://www.f2er.com/linux/393901.html

猜你在找的Linux相关文章