在g ++中使用异常

时间:2015-06-07 06:06:30

标签: c++ exception-handling

在下面的代码中出现编译错误,该代码在linux上的g ++ 4.8.2中抛出std::exception。 任何有关此错误即将发生的建议将非常有用。

#include <iostream>
#include <stdexcept>

void function()
{
     std::exception e((char*)"mmmm");
     throw e;
}


int main(int argc, const char* arg[]) {

    try {
        function();
    }
    catch(const std::exception& e) {
        e.what();
    }

    return 0;
}

错误:

$ g++ t.cpp
t.cpp: In function ‘void function()’:
t.cpp:6:33: error: no matching function for call to ‘std::exception::exception(char*)’
   std::exception e((char*)"mmmm");
                                 ^
t.cpp:6:33: note: candidates are:
In file included from /usr/include/c++/4.8/ios:39:0,
                 from /usr/include/c++/4.8/ostream:38,
                 from /usr/include/c++/4.8/iostream:39,
                 from t.cpp:1:
/usr/include/c++/4.8/exception:63:5: note: std::exception::exception()
     exception() _GLIBCXX_USE_NOEXCEPT { }
     ^
/usr/include/c++/4.8/exception:63:5: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/4.8/exception:60:9: note: std::exception::exception(const std::exception&)
   class exception
         ^
/usr/include/c++/4.8/exception:60:9: note:   no known conversion for argument 1 from ‘char*’ to ‘const std::exception&’

编辑1

但是代码在Visual Studio 2010编译器中编译并运行良好。

_EXCEPTION_INLINE __CLR_OR_THIS_CALL exception::exception()
    : _Mywhat(NULL), _Mydofree(false) { }

_EXCEPTION_INLINE __CLR_OR_THIS_CALL exception::exception(const char * const & _What)
    : _Mywhat(NULL), _Mydofree(false)
    {
    _Copy_str(_What);
    }

_EXCEPTION_INLINE __CLR_OR_THIS_CALL exception::exception(const char * const & _What, int)
    : _Mywhat(_What), _Mydofree(false) { }

_EXCEPTION_INLINE __CLR_OR_THIS_CALL exception::exception(const exception& _That)
    : _Mywhat(NULL), _Mydofree(false)

C ++标准对此有何看法?

3 个答案:

答案 0 :(得分:7)

std::exception没有带std :: string或char *的构造函数。也许您想使用std::runtime_error

答案 1 :(得分:1)

no matching function for call to ...表示您正在尝试调用不存在的函数。 std::exception没有构造函数可以使用char*或任何可以从char*转换的内容。它只有一个默认构造函数和一个复制构造函数。

答案 2 :(得分:0)

正如其他答案中已经指出的那样,std::exception的构造函数不带参数。
您的代码在MSVC中进行编译是因为

exception(const char* const &message)
exception(const char* const &message, int)

是Microsoft对C ++标准库的扩展 (请参见此处exception Class的备注)