我有一个州A
,一旦B
的构造函数完成,我就无条件地转换到下一个州A
。这可能吗?
我尝试从构造函数发布一个事件,即使它编译也不起作用。感谢。
编辑:这是我到目前为止所尝试的内容:
struct A : sc::simple_state< A, Active >
{
public:
typedef sc::custom_reaction< EventDoneA > reactions;
A()
{
std::cout << "Inside of A()" << std::endl;
post_event( EventDoneA() );
}
sc::result react( const EventDoneA & )
{
return transit< B >();
}
};
这会产生以下运行时断言失败:
Assertion failed: get_pointer( pContext_ ) != 0, file /includ
e/boost/statechart/simple_state.hpp, line 459
答案 0 :(得分:3)
我已经用我的解决方案更新了我的OP,在这里我可以解决这个问题。
问题是你不能从simple_state
继承以实现所需的转换,你必须从state
继承,然后要求你相应地修改构造函数。
struct A : sc::state< A, Active >
{
public:
typedef sc::custom_reaction< EventDoneA > reactions;
A( my_context ctx ) : my_base( ctx )
{
std::cout << "Inside of A()" << std::endl;
post_event( EventDoneA() );
}
sc::result react( const EventDoneA & )
{
return transit< B >();
}
};