自定义类ostringstream输出错误

时间:2012-04-30 15:59:50

标签: c++ stringstream

我不知道为什么这是错误的,但我只是想在endl中添加“akin”,这样我就可以将ostringstream中的内容添加到调试器中。我有以下内容:

class debug_stream_info
{
public:
    debug_stream_info(int errorLine, char *errorFile, int level)
        :m_errorLine(errorLine), m_errorFile(errorFile), m_logLevel(level)
    {
    }

    friend std::basic_ostringstream<char>& operator<<(std::basic_ostringstream<char>& os, debug_stream_info& debug_info);

private:
    int m_errorLine;
    std::string m_errorFile;
    int m_logLevel;

};

std::basic_ostringstream<char>& operator<<(std::basic_ostringstream<char>& os, debug_stream_info& debug_info)
{
    // Write the stream's contents to cpu_debug
    // Deleted custom logging function.  No errors here though

    // Clear the stream for re-use.
    os.str("");
    os.seekp(0);

    return os;
}

int main(int argc, char** argv)
{
    std::ostringstream myout;
    myout << "hey there" << " and some more " << "Numbers!!: " << 435 << 54.2 << " that's good for numbers" << debug_stream_info(__LINE__, __FILE__, LOG_LEVEL);

    return 0;
}

我得到的错误是:error C2679: binary '<<' : no operator found which takes a right-hand operand of type 'debug_stream_info' (or there is no acceptable conversion)代表main中的行。这是在VS2008上。

我包括sstream,iostream等,并且命名空间设置正确。我没有其他错误。我甚至尝试用basic_ostream替换ostringstream的所有出现并且没有区别(稍后我会有w_char版本,但我希望简单的情况首先工作)。我在上面的行上创建了对象,然后在行上传递了一个完全构造的对象,错误完全相同。我已将第二个参数的签名更改为const和来自std::ostringstream,但也没有更改。

关于我在这里做错了什么想法?

编辑:因为每个响应似乎都想把它放在那里,我不能使用std :: ostream因为我希望这只适用于std::basic_ostringstream(和os.str())而不是任何类型输出流。此外,函数不会使用ostream进行编译,因为我使用的是{{1}}方法,它不在ostream中,只有子类。

3 个答案:

答案 0 :(得分:7)

您的代码存在的真正问题是您已经超载std::ostringstream而不是std::ostream。所以如果你写这个代码你的代码就可以了:

debug_stream_info info(/** blah blah**/);

std::ostringstream oss;
oss << info ; //OK

然而,这不起作用:

oss << 1 << info; //ERROR

这是编译错误,因为表达式oss<<1返回类型为std::ostream&的对象,该对象没有以debug_stream_info作为第二个参数的重载。这意味着如果你使用强制转换为:

static_cast<std::ostringstream&>(oss << 1) << info; //OK
那么那应该再次起作用。

因此解决方案是重载std::ostream,而不是std::basic_ostringstream

此外,第二个参数应为const &。这也是您的代码的问题。

所以写下来:

std::ostream& operator<<(std::ostream&, debug_stream_info const &);
                                                        //^^^^^^^ note this

第二个参数应为const &,以便您可以将临时对象写入流中。

答案 1 :(得分:1)

debug_stream_info(__LINE__, __FILE__, LOG_LEVEL);正在创建未命名的对象,它不返回任何错误

#include <iostream>
#include <cstdio>
#include <sstream>
using namespace std;

class debug_stream_info
{
public:
    debug_stream_info(int errorLine, char *errorFile, int level)
        :m_errorLine(errorLine), m_errorFile(errorFile), m_logLevel(level)
    {
    }

    friend std::basic_ostringstream<char>& operator<<(std::basic_ostringstream<char>& os, debug_stream_info& debug_info);
    std::ostringstream& fun(std::ostringstream& os)
    {
        os<<"Ashish"<<endl;
        return os;
    }
private:
    int m_errorLine;
    std::string m_errorFile;
    int m_logLevel;

};

std::basic_ostringstream<char>& operator<<(std::basic_ostringstream<char>& os, debug_stream_info& debug_info)
{
    // Write the stream's contents to cpu_debug
    // Deleted custom logging function.  No errors here though

    // Clear the stream for re-use.
//    os.str("");
//    os.seekp(0);

    return os;
}

int main(int argc, char** argv)
{

    std::ostringstream myout, test;
        myout << "hey there" << " and some more " << "Numbers!!: " << 435 << 54.2 << " that's good for numbers"
         << debug_stream_info(1, "/home/ashish/test", 1).fun(test);
    return 0;
}

答案 2 :(得分:1)

Nawaz非常清楚地解释了为什么你会收到这个错误。该 在这种情况下通常的解决方案是定义自己的流类型,无关 到std::istream。有点像:

class DebugStream
{
    std::ostringstring* collector;

public:
    template <typename T>
    DebugStream& operator<<( T const& value )
    {
        if ( collector != NULL ) {
            *collector << value;
        }
        return *this;
    }
};

这有无限的变化;在你的情况下,你可以添加一个 您的类型的非模板成员函数;更有可能的是,你要添加一个 采用相同参数的构造函数:

DebugStream( int lineNumber, std::string const& filename, int logLevel )
    : collector( isActive( logLevel ) ? new std::ostringstream : NULL )
{
    //  Initial insertion of lineNumber, filename, timestamp...
}

您还可以添加一个析构函数,以原子方式刷新收集的数据 数据到文件(或发送电子邮件,或将其写入系统日志,或 随你)。 (要非常小心。你不希望例外 即使记录失败,也要从析构函数中逃脱。)

最后,您可能想要使用自定义streambuf,而不是 stringstream。说一个保持分配缓冲区的一个 实例到下一个。如果你这样做,而不是new 每次流,您可以从表中选取一个实例,索引为 日志级别(并从配置文件初始化)。