Stringstream error: cannot access private member declared in class 'std::basic_ios<_Elem,_Traits>'

那年仲夏 提交于 2020-01-14 14:12:41

问题


In creating a simple exception class extension (where I can construct error messages more easily), I've isolated an error down to the following simple code:

#include <sstream>
#include <string>
class myCout {
public:
    std::stringstream ssOut;    // Removing this gets rid of error
    template <typename T> myCout& operator << (const T &x) {
        // Do some formatting
        return *this;
    }
};

class myErr : public myCout {
public:
    using myCout::operator<<;
};

int main(int argc, const char* argv[]) {
    throw myErr() << "ErrorMsg" << 1;
    myCout() << "Message Will Be Formatted";
    return 0;
}

Which, on compiling, produces this error:

1>C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\sstream(724): error C2248: 'std::basic_ios<_Elem,_Traits>::basic_ios' : cannot access private member declared in class 'std::basic_ios<_Elem,_Traits>'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>
1>          ]
1>          C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ios(176) : see declaration of 'std::basic_ios<_Elem,_Traits>::basic_ios'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>
1>          ]
1>          This diagnostic occurred in the compiler generated function 'std::basic_stringstream<_Elem,_Traits,_Alloc>::basic_stringstream(const std::basic_stringstream<_Elem,_Traits,_Alloc> &)'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]

(In actual fact it's more complex and extends stuff like std::runtime_error)

I have seen previous answers which state the problem arises from not passing streams by reference, but I can't see how I'm not.

Commenting out the std::stringstream ssOut fixes the issue. Why, and how do I fix the underlying problem?


回答1:


You're throwing the exception by value, which is indeed recommended practice. However, it means the exception gets copied as part of the throw statement, so it must have an accessible copy constructor. And because you have a non-copyable member (std::stringstream), you must provide your own copy ctor.



来源:https://stackoverflow.com/questions/16515644/stringstream-error-cannot-access-private-member-declared-in-class-stdbasic-i

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!