代码搜索:thread
找到约 10,000 项符合「thread」的源代码
代码结果 10,000
www.eeworm.com/read/368531/9690622
c bo6-3.c
/* bo6-3.c 二叉树的二叉线索存储(存储结构由c6-3.h定义)的基本操作 */
Status CreateBiThrTree(BiThrTree *T)
{ /* 按先序输入二叉线索树中结点的值,构造二叉线索树T */
/* 0(整型)/空格(字符型)表示空结点 */
TElemType h;
#if CHAR
scanf("%c",&h);
#
www.eeworm.com/read/368447/9694369
pas beginthreaddemo.pas
unit BeginThreadDemo;
// Simple demonstration of using a background thread to compute
// a Mandelbrot set. For some good information on the Mandelbrot set
// and ways to make this simple program
www.eeworm.com/read/368262/9703362
cpp bo6-3.cpp
// bo6-3.cpp 二叉树的二叉线索存储(存储结构由c6-3.h定义)的基本操作
Status CreateBiThrTree(BiThrTree &T)
{ // 按先序输入二叉线索树中结点的值,构造二叉线索树T
// 0(整型)/空格(字符型)表示空结点
TElemType h;
#if CHAR
scanf("%c",&h);
#else
www.eeworm.com/read/172146/9722811
svn-base mmlclienthandler.java.svn-base
// $dateCreated:2006-8-20-12:05:38 userCreated:pippo
package com.vms.ts.simulator.mmlserver;
import java.io.IOException;
import java.io.InputStream;
import java.net.SocketException;
import java
www.eeworm.com/read/172146/9722834
java mmlclienthandler.java
// $dateCreated:2006-8-20-12:05:38 userCreated:pippo
package com.vms.ts.simulator.mmlserver;
import java.io.IOException;
import java.io.InputStream;
import java.net.SocketException;
import java
www.eeworm.com/read/170719/9792485
java timer.java
/*
* Copyright (c) 2000 David Flanagan. All rights reserved.
* This code is from the book Java Examples in a Nutshell, 2nd Edition.
* It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or
www.eeworm.com/read/366926/9792500
java sleepinterrupt.java
public class SleepInterrupt extends Object implements Runnable {
public void run() {
try {
System.out.println(
"in run() - about to sleep for 20 seconds");
Thread.sleep(20000);
www.eeworm.com/read/366926/9792566
java cubbyholemain.java
public class CubbyHoleMain extends Object {
private static void print(String msg) {
String name = Thread.currentThread().getName();
System.out.println(name + ": " + msg);
}
public static
www.eeworm.com/read/366926/9792643
java twothread.java
public class TwoThread extends Thread {
public void run() {
for ( int i = 0; i < 10; i++ ) {
System.out.println("New thread");
}
}
public static void main(String[] args) {
TwoThre
www.eeworm.com/read/366926/9792674
java twothreadgetname.java
public class TwoThreadGetName extends Thread {
public void run() {
for ( int i = 0; i < 10; i++ ) {
printMsg();
}
}
public void printMsg() {
// get a reference to the thread runni