代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/114418/15053944
pas oneboxthread.pas
unit OneBoxThread;
interface
uses
Classes,Dialogs,windows,SysUtils;
type
LightOneBoxThread = Class (TThread)
protected
procedure Execute; override;
end;
implementat
www.eeworm.com/read/212165/15165229
pas cleanerlogunit.pas
unit CleanerLogUnit;
interface
uses
Windows, Messages,Classes,WinntService, SysUtils;
type
TCleanerLogThread = class(TThread)
private
protected
procedure Execute; overri
www.eeworm.com/read/208149/15253546
pas copythread.pas
unit CopyThread;
interface
uses
Classes;
type
TCopyThread = class(TThread)
private
FOnSignal: TNotifyEvent;
protected
procedure Execute; override;
procedure DoOnSig
www.eeworm.com/read/11175/208066
h scanner.h
#undef SCANNER_H
#define SCANNER_H ON
/*======================================================================*/
/* Scanner state definitions */
#define SS_EXECUTE (ushort)0
#defi
www.eeworm.com/read/243866/4518897
java command.java
package com.javapatterns.command.audioplayer;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}
www.eeworm.com/read/241710/4559033
cs command.cs
using System;
namespace UndoCommand
{
///
/// defines Command interface
///
public interface Command {
void Execute();
void Undo();
bool isUndo();
}
}
www.eeworm.com/read/240529/4573085
java command.java
package com.javapatterns.command.audioplayer;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}
www.eeworm.com/read/234134/4661433
h scanner.h
#undef SCANNER_H
#define SCANNER_H ON
/*======================================================================*/
/* Scanner state definitions */
#define SS_EXECUTE (ushort)0
#defi