Execute() 공개 추상적인 메소드

public abstract Execute ( AbstractMachineState state ) : void
state AbstractMachineState
리턴 void
        public void Transition()
        {
            while (!Stop())
            {
                AbstractInstruction next = _program.CurrentInstruction();
                AMHeap heap = (AMHeap)_dataArea;

                next.Execute(this);
            }
        }