代码搜索:Command

找到约 10,000 项符合「Command」的源代码

代码结果 10,000
www.eeworm.com/read/151775/5679034

java command.java

/* * Copyright (c) 2000 David Flanagan. All rights reserved. * This code is from the book Java Examples in a Nutshell, 2nd Edition. * It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or
www.eeworm.com/read/151582/5680926

java command.java

package org.hibernate.auction.command; import java.io.Serializable; /** * The interface for generic commands between presentation and business tier. * * @author Christian Bauer
www.eeworm.com/read/150933/5687745

cpp command.cpp

// ******************************************************************** // // // // COMMAND.CPP
www.eeworm.com/read/147766/5723976

c command.c

/* $Id: command.c,v 1.1.4.1 2001/11/20 14:19:37 kai Exp $ * * Copyright (C) 1996 SpellCaster Telecommunications Inc. * * This software may be used and distributed according to the terms * of the
www.eeworm.com/read/146765/5734419

h command.h

#if !defined(COMMAND_H) #define COMMAND_H #include // 命令栈数据结构 struct CommandDS { char szElement[81]; }; // 命令栈链表 struct CommandList { struct CommandDS Command; struct
www.eeworm.com/read/146765/5734429

c command.c

#include "Command.h" #include "Server.h" #include // 添加一个元素到命令栈中 struct CommandList *Add_Command(struct CommandList *pNode,struct CommandDS Command) { if (pNode->pNext = (struct C
www.eeworm.com/read/146765/5734447

h command.h

#if !defined(COMMAND_H) #define COMMAND_H #include struct CommandDS { char szElement[81]; }; struct CommandList { struct CommandDS Command; struct CommandList *pNext; }
www.eeworm.com/read/146765/5734459

c command.c

#include "Command.h" #include "client.h" #include struct CommandList *Add_Command(struct CommandList *pNode,struct CommandDS Command) { if (pNode->pNext = (struct CommandList *)mal
www.eeworm.com/read/146447/5737852

c command.c

#include #include #include #include #define PROMPT ">" void getline(char *buf,int *num,int max_num) { static int line_len = 0;
www.eeworm.com/read/145088/5747912

h command.h

#if !defined(COMMAND_H) #define COMMAND_H #include // 命令栈数据结构 struct CommandDS { char szElement[81]; }; // 命令栈链表 struct CommandList { struct CommandDS Command; struct