What is the corresponding representation of state machine diagram in coding phase(written in programming language)?

StackOverflow https://stackoverflow.com/questions/17948983

質問

State machine diagram represents the life-cycle of object so, What is the corresponding of it(state machine as local view of object) in programming level?

正しい解決策はありません

他のヒント

There is no direct correspondence between a state machine and code, you could use any programming algorithm to implement it. For example, you could use an enumeration type with an enumeration literal for each possible state and use it in your implementation class to represent to current state of your instance.

But you could also use other values like "if the user has an empty command list he is in the prospect state".

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top