代码搜索结果

找到约 10,000 项符合 State Machine 的代码

state.h

const int true = 1; const int false = 0; const int Yes = 1; const int No = 0; const int Cancel = -1;

state.java

/* * Created on Oct 23, 2004 */ import java.awt.Point; public class State extends Point { public State(int x, int y) { this.x = x; this.y = y; } /* used for debugging on

state.cpp

/******************************************************************** created: 2006/08/05 filename: State.cpp author: 李创 http://www.cppblog.com/converse/ purpose: State模式的

state.h

/******************************************************************** created: 2006/08/05 filename: State.h author: 李创 http://www.cppblog.com/converse/ purpose: State模式的演示