gpt4 book ai didi

c++ - 神秘的编译错误: cannot convert from 'const boost::shared_ptr' to 'const boost::shared_ptr'

转载 作者:行者123 更新时间:2023-11-28 03:27:09 25 4
gpt4 key购买 nike

我想通过 booSTLog 库保护对我用于多线程日志记录的日志文件的访问。

我试过这个流类

class ThreadSafeStream
{
public:
template <typename TInput>
const ThreadSafeStream& operator<< (const TInput &tInput) const
{
// some thread safe file access
return *this;
}
};

这样使用(text_sink 是一个 booSTLog 对象):

    //...
m_spSink.reset(new text_sink);
text_sink::locked_backend_ptr pBackend = m_spSink->locked_backend();

const boost::shared_ptr< ThreadSafeStream >& spFileStream = boost::make_shared<ThreadSafeStream>();

pBackend->add_stream(spFileStream); // this causes the compilation error

我得到了这个神秘的错误:cannot convert from 'const boost::shared_ptr<T>' to 'const boost::shared_ptr<T>'

整个编译错误:

Log.cpp(79): error C2664: 'boost::log2_mt_nt5::sinks::basic_text_ostream_backend<CharT>::add_stream' : cannot convert parameter 1 from 'const boost::shared_ptr<T>' to 'const boost::shared_ptr<T> &'
1> with
1> [
1> CharT=char
1> ]
1> and
1> [
1> T=ThreadSafeStream
1> ]
1> and
1> [
1> T=std::basic_ostream<char,std::char_traits<char>>
1> ]
1> Reason: cannot convert from 'const boost::shared_ptr<T>' to 'const boost::shared_ptr<T>'
1> with
1> [
1> T=ThreadSafeStream
1> ]
1> and
1> [
1> T=std::basic_ostream<char,std::char_traits<char>>
1> ]
1> No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called

我怀疑我没有很好地定义运算符<<()...但我没有发现问题所在。

这是 addStream 的原型(prototype):void add_stream(shared_ptr< stream_type > const& strm);typedef std::basic_ostream< target_char_type > stream_type;

最佳答案

从错误消息推测 pBackend->add_stream 应该是一个 shared_ptr (!) to an ostream 而你给它一个shared_ptr 到一个完全不相关的类型的 ThreadSafeStream。您需要创建一个最有可能与 ThreadSafeStream 一起使用的重载 add_stream 方法。

关于c++ - 神秘的编译错误: cannot convert from 'const boost::shared_ptr<T>' to 'const boost::shared_ptr<T>' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13630751/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com