其他分享
首页 > 其他分享> > c – 使用std :: tr1 :: function(或boost :: function)创建多播事件

c – 使用std :: tr1 :: function(或boost :: function)创建多播事件

作者:互联网

我正在尝试使用TR1中的功能创建类似C#的多播委托和事件.或者Boost,因为boost :: function(大部分)与std :: tr1 :: function相同.作为概念证明,我试过这个:

template<typename T1>
class Event
{
private:
 typedef std::tr1::function<void (T1)> action;
 std::list<action> callbacks;

public:

 inline void operator += (action func)
 {
  callbacks.push_back(func);
 }

 inline void operator -= (action func)
 {
  callbacks.remove(func);
 }

 void operator ()(T1 arg1)
 {
  for(std::list<action>::iterator iter = callbacks.begin();
   iter != callbacks.end(); iter++)
  {
   (*iter)(arg1);
  }
 }
};

哪个有用,有点像.行callbacks.remove(func)没有.当我编译它时,我收到以下错误:

error C2451: conditional expression of type 'void' is illegal

这是由列表标题的第1194行引起的,它位于remove函数中.是什么造成的?

解决方法:

我认为这是完全相同的问题:comparing-stdtr1function-objects

(基本上你无法比较仿函数,这就是为什么擦除或使用operator ==的任何东西都行不通)

标签:tr1,c,boost,stl,delegates
来源: https://codeday.me/bug/20190724/1519096.html