代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/240529/4573113
java invoker.java
package com.javapatterns.command;
public class Invoker
{
public Invoker(Command command)
{
this.command = command;
}
public void action()
{
command.execute()
www.eeworm.com/read/238231/4617016
py artproviderexample.plug-in.py
# Important: This file should be placed in the Plug-ins directory if you want
# it to execute
import wx
import PaletteStore
import ArtProviderExample
# register art ids for use
www.eeworm.com/read/229812/4742236
c msc13.c
/*
MSC7 doesn't execute this program correctly. MetaWare screws up the
order of construction for the virtual bases but if the program is
changed to compensate for this, MetaWare executes
www.eeworm.com/read/222453/4819212
pas netdisconnect.pas
unit NetDisconnect;
interface
uses
Forms, Dialogs, StdCtrls, mmsystem, classes, SysUtils, log, activex;
type
TWarnning = class(TThread)
private
protected
procedure execute; ove
www.eeworm.com/read/217476/4869020
pas unit2.pas
unit Unit2;
interface
uses
Classes;
type
kjh = class(TThread)
private
{ Private declarations }
protected
procedure Execute; override;
end;
implementation
{ Impo
www.eeworm.com/read/165570/5481272
java changesectionlimittrans.java
package Transactions;
import Sets.DepartmentSet;
import Entities.*;
/** Change the enrollment limit for a course section */
public class ChangeSectionLimitTrans
{
public void execute(Call
www.eeworm.com/read/165570/5481281
java addcoursesectiontrans.java
package Transactions;
import Entities.*;
import Sets.*;
/** Add a section for a course */
public class AddCourseSectionTrans
{
public void execute(CallNum callN, SectionDetails secD)
{