使用 boost::shared_ptr 编译 std::map 时出错

发布于 2024-12-20 00:17:15 字数 615 浏览 2 评论 0原文

我正在尝试在 vs2005 中编译我的代码。 我正在使用 std::map 和 boost::shared_ptr (v1.47.0) 我的代码看起来像这样

struct B {
    int a;
}
typedef boost::shared_ptr<B> K;

std::map<const std::string, K > mymap;

//some code

std::map<const std::string, K >::iterator it;
for (it = mymap.begin(); it < mymap.end(); it++ )
{
     //do something
}

编译器在 for 语句处给出错误。 以下是错误

C2784: 'bool boost::operator <(const boost::intrusive_ptr &,const boost::intrusive_ptr &)' : 无法推导出 'const boost::intrusive_ptr &' 的模板参数来自“std::_Tree<_Traits>::iterator”。

任何帮助表示赞赏。 谢谢。

I am trying to compile my code in vs2005.
I am using std::map and boost::shared_ptr (v1.47.0)
My code looks something like this

struct B {
    int a;
}
typedef boost::shared_ptr<B> K;

std::map<const std::string, K > mymap;

//some code

std::map<const std::string, K >::iterator it;
for (it = mymap.begin(); it < mymap.end(); it++ )
{
     //do something
}

The compiler is giving an error at the for statement.
The following is the error

error C2784: 'bool boost::operator <(const boost::intrusive_ptr &,const boost::intrusive_ptr &)' : could not deduce template argument for 'const boost::intrusive_ptr &' from 'std::_Tree<_Traits>::iterator'.

Any help is appreciated.
Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心凉怎暖 2024-12-27 00:17:15

您使用了错误的运算符来检查 mymap.end()。将循环更改为

for (it = mymap.begin(); it != mymap.end(); it++ )

You are using the wrong operator for the checking against mymap.end(). Change the loop to

for (it = mymap.begin(); it != mymap.end(); it++ )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文