代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/249104/4457557
java~2~ lightoffcommand.java~2~
package testcommand;
public class LightOffCommand {
private Light myLight;
public LightOffCommand (Light L) {
myLight = L;
}
public void execute () {
myLight.turnOff ();
}
www.eeworm.com/read/249104/4457562
java~1~ fanoffcommand.java~1~
package testcommand;
public class FanOffCommand {
private Fan myFan;
public FanOffCommand (Fan F) {
myFan = F;
}
public void execute () {
myFan.stopRotate ();
}
}
www.eeworm.com/read/249104/4457565
java~1~ lightoncommand.java~1~
package testcommand;
public class LightOnCommand implements Command {
private Light myLight;
public LightOnCommand (Light L) {
myLight = L;
}
public void execute() {
myLigth
www.eeworm.com/read/249104/4457569
java~3~ lightoffcommand.java~3~
package testcommand;
public class LightOffCommand implements Command{
private Light myLight;
public LightOffCommand (Light L) {
myLight = L;
}
public void execute () {
myLight
www.eeworm.com/read/249104/4457580
java~1~ lightoffcommand.java~1~
package testcommand;
public class LightOffCommand {
private Light myLight;
public LightOffCommand (Light L) {
myLight = L;
}
public void execute () {
myLight.turnOff ();
www.eeworm.com/read/249104/4457587
java~1~ fanoncommand.java~1~
package testcommand;
public class FanOnCommand {
private Fan myFan;
public FanOnCommand (Fan F) {
myFan = F;
}
public void execute () {
myFan.startRotate ();
}
}
www.eeworm.com/read/229812/4748078
vi tryme.vi
#
# sample script using all the new constructs (I think)
#
atomic
assign %(maincount) = 1
execute \eAStarting\n\e
while %(maincount)
www.eeworm.com/read/229812/4752147
gml opcheck.gml
.*
.*
.option CHECK
.*
.np
The "CHECK" option specifies the name of a procedure to execute before
an NLM is unloaded.
This procedure can, for example, inform the operator that the NLM is
in us