我可以实现Mealy and Moore机器并从源代码生成UML状态图吗?

问题描述 投票:-1回答:1

我如何实现粉/摩尔机器,以及如何从代码生成uml状态图?最好的语言是什么?我以为使用C#,但不确定。

c# uml state-machine
1个回答
0
投票

我通常使用枚举和开关

       enum State
        {
            State1,
            State2,
            State3,
            State4,
        }
        static void Main(string[] args)
        {
            State state = State.State1;

            switch (state)
            {
                case State.State1 :
                    break;
                case State.State2:
                    break;
                case State.State3:
                    break;
                case State.State4:
                    break;
            }
        }
© www.soinside.com 2019 - 2024. All rights reserved.