创建类似stringstream的类的最简单方法

时间:2014-12-08 23:24:35

标签: c++ inheritance stringstream

我正在创建一个简单的Error类,应该使用throw语句抛出,在控制台中记录或写入。使用的基本思想是:

//const char* filename is function argument
if(!file_exists(filename))
  throw Error(line, file, severity)<<"Invalid argument: the file does not exist: "<<filename;

我原本想延长stringstream,但我的搜索结果显示it's impossible to extend on streams

我真的很想让错误类像上面看到的那样方便,这意味着能够“ eat ”各种类型并将它们附加到内部错误消息中。

1 个答案:

答案 0 :(得分:3)

所以实际上并不是那么难。您无法直接从stringstream继承 - 或者我只是没有找到方法。您很快就会淹没在std模板系统中......

template<class _Elem,
class _Traits,
class _Alloc>
// ... mom help me!

但是,你可以制作一个模板:

template <class T>
Error& Error::operator<<(T const& value) {
    //private std::stringstream message
    message<<value;
    //You can also trigger code for every call - neat, ain't it? 
}

您要将此方法中的所有值添加到类中的私有变量中:

class Error
{
public:
    Error(int, const char*, int);
    ~Error(void);
    std::string file;
    unsigned int line;
    //Returns message.str()
    std::string what();
    //Calls message.operator<<()
    template <class T>
    Error& operator<< (T const& rhs);

private: 
    std::stringstream message;

};

我还缺少一些东西 - 如何区分stringstream和其他人支持的类型,并在调用线上抛出错误,而不是在Error类中。此外,我还想为不支持的类型编写自己的处理程序。