我的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