代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/417821/10975017
java threadpoolmain.java
public class ThreadPoolMain extends Object {
public static Runnable makeRunnable(
final String name,
final long firstDelay
) {
return new Runnable() {
public void run() {
www.eeworm.com/read/271892/10976470
frm frmmain.frm
VERSION 5.00
Begin VB.MDIForm frmMain
BackColor = &H8000000C&
Caption = "四川百事可乐公司仓库库存管理系统"
ClientHeight = 4080
ClientLeft = 60
ClientTop = 6
www.eeworm.com/read/271892/10976475
frm frmotherchk.frm
VERSION 5.00
Begin VB.Form FrmOtherChk
Caption = "采购入库单审核"
ClientHeight = 4590
ClientLeft = 60
ClientTop = 345
ClientWidth = 7020
Icon
www.eeworm.com/read/271892/10976497
frm frmpschk.frm
VERSION 5.00
Begin VB.Form FrmPsChk
Caption = "采购入库单审核"
ClientHeight = 4590
ClientLeft = 60
ClientTop = 345
ClientWidth = 7020
Icon
www.eeworm.com/read/271686/10984636
txt jdbctm 指南:入门4 - statement.txt
作者:jeru
日期:2000-12-9 21:25:37
4 - Statement
本概述是从《JDBCTM Database Access from JavaTM: A Tutorial and Annotated Reference 》这本书中摘引来的。JavaSoft 目前正在准备这本书。这是一本教程,同时也是 JDBC 的重要参考手册,它将作为 Java 系列的组成部份在 199
www.eeworm.com/read/417321/10995240
c cleanup.c
/*
* cleanup.c
*
* Description:
* This translation unit implements routines associated
* with cleaning up threads.
*
*
* -----------------------------------------------------------------------
www.eeworm.com/read/417019/11007093
js 16.03 - using interfaces with the command pattern.js
/* Command interface. */
var Command = new Interface('Command', ['execute']);
/* Checking the interface of a command object. */
// Ensure that the execute operation is defined. If not, a descriptiv