代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/330876/12862698
java main.java
package S7.A6;
import java.io.IOException;
public class Main {
public static void main(String args[]) {
try {
new MiniServer(8888).execute();
} catch (IOExcepti
www.eeworm.com/read/330348/12900232
readme
MATRIX example program
gpio.c
1.Compiler and build
execute "make" will create executable file.
2.Download to MATRIX
use ftp or USB/SD to put the executable file into MATRIX.
3.Execute example
first
www.eeworm.com/read/330348/12900347
readme
README for uart
1.Compiler and build
execute build.sh will create executable file uart.
2.download to matrix
use ftp or USB/SD to put the executable file into matrix.
3.execute example
e.g.
chmod +x
www.eeworm.com/read/330160/12908850
java command.java
package project;
//命令接口
public interface Command {
public void execute();
public void undo();
public void redo();
}
www.eeworm.com/read/330149/12910852
java exitcommand.java
package fullCommand;
public class ExitCommand implements Command {
public void Execute () {
System.exit(0);
}
}
www.eeworm.com/read/330149/12912916
java filecommand.java
import java.awt.*;
import javax.swing.*;
public class fileCommand implements Command {
JFrame frame;
public fileCommand(JFrame fr) {
frame = fr;
}
//-------------------------
www.eeworm.com/read/330149/12913159
java checkcommand.java
import java.awt.*;
public class CheckCommand extends Checkbox
implements Command {
Command cmd;
public CheckCommand(String caption, CheckboxGroup grp, Command comd) {
super(captio
www.eeworm.com/read/330149/12913256
java~1~ checkcommand.java~1~
import java.awt.*;
public class checkCommand extends Checkbox
implements Command {
Command cmd;
public checkCommand(String caption, CheckboxGroup grp, Command comd) {
super(captio
www.eeworm.com/read/330149/12913282
java~2~ checkcommand.java~2~
import java.awt.*;
public class checkCommand extends Checkbox
implements Command {
Command cmd;
public checkCommand(String caption, CheckboxGroup grp, Command comd) {
super(captio