代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/127651/14344913
java verb.java
public class Verb extends ParseVerb implements Command
{
protected Data data;
protected JawtList ptable;
public Verb(String s)
{
super(s);
}
public void Execute()
www.eeworm.com/read/127116/14377790
java macrocommand.java
package com.javapatterns.command.audioplayer2;
public interface MacroCommand extends Command
{
void execute();
void remove(Command toRemove);
void add(Command toAdd);
}
www.eeworm.com/read/127116/14377893
java macrocommand.java
/* Generated by Together */
package com.javapatterns.command.book;
public interface MacroCommand extends Command {
void execute();
void remove(Command toRemove);
void add(Co
www.eeworm.com/read/124167/14591942
java verb.java
public class Verb extends ParseVerb implements Command
{
protected Data data;
protected JawtList ptable;
public Verb(String s)
{
super(s);
}
public void Execute()
www.eeworm.com/read/123064/14650178
c outrdf.c
/* outrdf.c output routines for the Netwide Assembler to produce
* RDOFF format object files (which are intended mainly
* for use in proprietary projects, as the code to load and
* execute th
www.eeworm.com/read/118993/14845475
c outrdf.c
/* outrdf.c output routines for the Netwide Assembler to produce
* RDOFF format object files (which are intended mainly
* for use in proprietary projects, as the code to load and
* execute th
www.eeworm.com/read/216668/14998392
pas unit2.pas
unit Unit2;
interface
uses
Classes,winsock,sysutils,windows;
type
convert = class(TThread)
private
{ Private declarations }
protected
procedure Execute; override;
end