代码搜索:queue

找到约 10,000 项符合「queue」的源代码

代码结果 10,000
www.eeworm.com/read/477671/6730765

cpp bankteller.cpp

//: C07:BankTeller.cpp // From "Thinking in C++, 2nd Edition, Volume 2" // by Bruce Eckel & Chuck Allison, (c) 2001 MindView, Inc. // Available at www.BruceEckel.com. // Using a queue and simulate
www.eeworm.com/read/477414/6734614

java listenthread.java

package sjc; import java.io.*; import javax.net.ssl.*; import java.net.*; import javax.net.*; public class ListenThread extends Thread { public ListenThread(ManagerThread mt) { mthread = mt;
www.eeworm.com/read/477414/6734615

java objectqueue.java

/* public void run(){ while (!isInterrupted()) { proceed(queue.get()); } } private void proceed(Object obj) { } */ //an optimized version of this class is available package sjc; imp
www.eeworm.com/read/410700/11271413

h forusbqueue.h

// ForUsbQueue.h // // Generated by DriverWizard 3.2.0 (Build 2485) // Requires DDK and DriverWorks // File created on 6/8/2007 // // This include file contains the definition of a subclass of K
www.eeworm.com/read/410353/11292373

c qus.c

/*************************************************************************/ /* */ /* Copyright (c) 1993-1998 Accelerated
www.eeworm.com/read/264889/11296193

cpp 10_14.cpp

#include #include using namespace std; int main() { queue< double > q; //创建空的队列容器 q.push( 3.2 ); q.push( 9.8 ); q.push( 5.4 ); //向空的队列容器添加元素 cout
www.eeworm.com/read/264792/11301197

makefile

# Generated automatically from Makefile.in by configure. # Copyright (c) 1994, 1995, 1996 # The Regents of the University of California. All rights reserved. # # Redistribution and use in source a
www.eeworm.com/read/264481/11311707

java mqgetc.java

import com.ibm.mq.*; public class MQGetC{ public static void main(String args[])throws MQException{ try{ MQEnvironment.CCSID = 1381; //要与队列管理器的一样 MQE
www.eeworm.com/read/264481/11311710

java mqputc.java

import com.ibm.mq.*; public class MQPutC{ public static void main(String args[])throws MQException{ try{ MQEnvironment.CCSID = 1381; //要与队列管理器的一样 MQEnvironment.hostname = "local
www.eeworm.com/read/264152/11327585

cpp 二叉树应用--我.cpp

#include typedef struct bitnode { char data; struct bitnode *lchild,*rchild; }bitnode ,*bitree; //建立二叉树二叉链表存储 void createbitree(bitree *t) { //以加入结点的先序序列输入,构造二叉链表 char ch;