代码搜索:State Machine
找到约 10,000 项符合「State Machine」的源代码
代码结果 10,000
www.eeworm.com/read/178627/9390220
java client_state.java
/**
*协议的客户端状态.
*是Idle状态选择的下一个状态
*执行它的doIt方法,并转入下一个状态
*/
public class Client_State extends State {
State doIt() {
//选择客户端的功能
System.out.println("当前为客户端 -- 简单FTP (基于TFTP协议) \n\n");
S
www.eeworm.com/read/178304/9408852
m bin_state.m
function bin_state = bin_state( int_state, m )
% Copyright Matt C. Valenti
% MPRG lab, Virginia Tech
% for academic use only
% converts an vector of integer into a matrix; the i-th row is the binary
www.eeworm.com/read/178304/9408853
m int_state.m
function int_state = int_state( state )
% Copyright 1996 Matthew C. Valenti
% MPRG lab, Virginia Tech.
% for academic use only
% converts a row vector of m bits into a integer (base 10)
[dummy, m] =
www.eeworm.com/read/374148/9419981