call to ‘std::exception::exception(const char [n])’
当利用"throw std::exception("XXX");"时, 在VS(visual studio)中可以编译通过;
但gcc(4.8.1)中, 需要利用尺度异常举办处理惩罚, 修改为:
logic_error ex("XXX"); throw std::exception(ex);
即可.
call to ‘std::exception::exception(const char [n])’
当利用"throw std::exception("XXX");"时, 在VS(visual studio)中可以编译通过;
但gcc(4.8.1)中, 需要利用尺度异常举办处理惩罚, 修改为:
logic_error ex("XXX"); throw std::exception(ex);
即可.