当我知道我插入的指针时,我如何从boost::ptr_set
中删除?(我有一个this指针指向插入的类对象)。
下面是一个人为的例子来展示我正在尝试做的事情:
boost::ptr_set<ServerConnection1> m_srv_conns1;
ServerConnection1 *this_ptr;
m_srv_conns1.insert(this_ptr = new ServerConnection1);
m_srv_conns1.erase(this_ptr); //It won't work!
有一个指向插入对象的this
指针,我如何告诉boost::ptr_set
到erase(this)
?注意:我不再在插入的对象中,但我有一个指向它的指针。
其中一个评论是我没有满足boost::ptr_set
的所有要求。有什么要求?
我认为提供一个< operator
会做的伎俩?
- 将
m_srv_conns1.erase(this_ptr);
更改为m_srv_conns1.erase(*this_ptr);
- 将以下代码放入
ServerConnection1
类中:
m_srv_conns1.erase(this_ptr);
更改为m_srv_conns1.erase(*this_ptr);
ServerConnection1
类中: bool operator<(const ServerConnection1 & sc1) const
{
return (this < &sc1); //Pointer comparison
}
试试m_srv_conns1.erase(*this_ptr);
.