代码搜索结果

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

state.java

import java.awt.*; public class State { public void mouseDown(int x, int y){} public void mouseUp(int x, int y){} public void mouseDrag(int x, int y){} public void select(Drawing d, Color c){}

state.cs

using System; namespace State { /// ///empty base class containing State methods to override /// public class State { //keeps state of each button protected

state.sln

Microsoft Visual Studio Solution File, Format Version 7.00 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "State", "State.csproj", "{42C4F50F-C512-44F2-B19A-FB785B4CDCBC}" EndProject Global

state.cs

using System; using System.Collections.Generic; using System.Text; using System.Collections ; /* *状态的顶层父类 */ namespace AIShow { abstract class State { //两个状态是否相等

state.java

class State{ int m; // number of missionaries on the left bank; int c; // number of cannibals on the left bank; int b; // 0 for boat on left bank, 1 for boat on the right; State(