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