代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/392558/2494744
java offcommand.java
package com.javapatterns.command.television;
public class OffCommand implements Command
{
private Tv myTv;
public OffCommand (Tv tv)
{
myTv = tv;
}
public void execute()
www.eeworm.com/read/391269/2521081
sin insert-header.sin
# Sed script that inserts the file called HEADER before the header entry.
#
# At each occurrence of a line starting with "msgid ", we execute the following
# commands. At the first occurrence, insert
www.eeworm.com/read/389922/2530373
c xargs.c
/* xargs - Make and execute commands Author: Ian Nicholls: 1 Mar 90 */
/*
* xargs - Accept words from stdin until, combined with the arguments
* given on the command line, just fit into
www.eeworm.com/read/380073/2663827
java stereooncommand.java
package headfirst.command.party;
public class StereoOnCommand implements Command {
Stereo stereo;
public StereoOnCommand(Stereo stereo) {
this.stereo = stereo;
}
public void execute() {
ste
www.eeworm.com/read/380073/2663833
java hottuboffcommand.java
package headfirst.command.party;
public class HottubOffCommand implements Command {
Hottub hottub;
public HottubOffCommand(Hottub hottub) {
this.hottub = hottub;
}
public void execute() {
h
www.eeworm.com/read/380073/2663842
java hottuboncommand.java
package headfirst.command.party;
public class HottubOnCommand implements Command {
Hottub hottub;
public HottubOnCommand(Hottub hottub) {
this.hottub = hottub;
}
public void execute() {
hott
www.eeworm.com/read/380073/2663852
java lightoncommand.java
package headfirst.command.simpleremote;
public class LightOnCommand implements Command {
Light light;
public LightOnCommand(Light light) {
this.light = light;
}
public void execute() {
l
www.eeworm.com/read/380073/2663885
java hottuboncommand.java
package headfirst.command.remote;
public class HottubOnCommand implements Command {
Hottub hottub;
public HottubOnCommand(Hottub hottub) {
this.hottub = hottub;
}
public void execute() {
ho