5

我已经派生了一个异常类std::runtime_error,以便添加对异常流的支持。我收到一个奇怪的编译器错误输出,我不确定如何解决?

clang++ -std=c++11 -stdlib=libc++ -g -Wall -I../ -I/usr/local/include Main.cpp -c
Main.cpp:43:19: error: call to deleted constructor of 'EarthException'
            throw EarthException(__FILE__, __LINE__)
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../EarthException.hpp:9:12: note: function has been explicitly marked deleted here
    struct EarthException : public Exception<EarthException>


template <typename TDerived>
    class Exception : public std::runtime_error
    {
        public:
            Exception() : std::runtime_error("") {}

            Exception(const std::string& file, const unsigned line)
                 : std::runtime_error("")
            { 
                stream_ << (file.empty() ? "UNNAMED_FILE" : file) << "[" << line << "]: ";
            }

            virtual ~Exception() {}

            template <typename T>
            TDerived& operator<<(const T& t)
            {
                stream_ << t;
                return static_cast<TDerived&>(*this);
            }

            virtual const char* what() const throw()
            {
                return stream_.str().c_str();
            }

       private:
           std::stringstream stream_;
    };

    struct EarthException : public Exception<EarthException>
    {
        EarthException() {}

        EarthException(const std::string& file, const unsigned line)
            : Exception<EarthException>(file, line) {}

        virtual ~EarthException() {}
    };
}

更新:

我现在添加了显式调用,std::runtime_error("")因为它指出默认构造函数被标记为=delete但是错误仍然存​​在。

4

2 回答 2

6

由于 and 中用户声明的析构函数ExceptionEarthException这些类的移动构造函数和移动赋值运算符的隐式生成被禁用。并且由于只移动数据成员std::stringstream,隐式复制成员被删除。

然而,所有这些都是一种干扰。

你的what会员注定要失败:

        virtual const char* what() const throw()
        {
            return stream_.str().c_str();
        }

这会创建一个右值std::string,然后返回一个指向该临时值的指针。在客户端可以将指针读入该临时文件之前,临时文件会被破坏。

您需要做的是std::string向下传递给std::runtime_error基类。然后你不需要持有stringstream, 或任何其他数据成员。唯一棘手的部分是std::runtime_error使用正确的初始化基类string

template <typename TDerived>
    class Exception : public std::runtime_error
    {
            static
            std::string
            init(const std::string& file, const unsigned line)
            {
                std::ostringstream os;
                os << (file.empty() ? "UNNAMED_FILE" : file) << "[" << line << "]: ";
                return os.str();
            }
        public:
            Exception(const std::string& file, const unsigned line)
                : std::runtime_error(init(file, line))
            { 
            }

      private:
          <del>std::stringstream stream_;</del>

现在您将获得隐式复制成员,并且一切正常。

于 2012-08-25T16:55:50.160 回答
1
Exception(const std::string& file, const unsigned line)
            { 
                stream_ << (file.empty() ? "UNNAMED_FILE" : file) << "[" << line << "]: ";
            }

此构造函数不调用其基构造函数,因此编译器生成对默认构造函数的调用std::runtime_error::runtime_error()。但是std::runtime_error没有默认构造函数,这是错误消息告诉你的。要解决此问题,请阅读std::runtime_error并调用其构造函数之一。

编辑:好的,这是真正的问题(不是我上面提到的也不是问题):模板Exception有一个类型的数据成员std::stringstream;无法复制流,因此编译器无法生成用于抛出的复制构造函数。

于 2012-08-25T15:18:22.553 回答