2

由于某些原因,我无法通过构造函数设置状态机的参数,所以我想通过后端访问元状态机的公共成员函数。也就是说,我想要类似的东西

typedef msm::back::state_machine<player_> player;

player p;
p.get_front_end(); //get the address of the front end
p.get_front_end().set_param(34) //call the member function of front end

这可能吗?谢谢

另一种解决方案是通过事件将参数传递到状态机。

p.process_event(open_theme(34));
4

1 回答 1

6

后端继承了前端,所以可以直接在p上调用set_param。

于 2012-11-01T22:02:15.233 回答