代码搜索:Threads
找到约 7,387 项符合「Threads」的源代码
代码结果 7,387
www.eeworm.com/read/471374/6891191
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// Threads.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h
www.eeworm.com/read/395000/8200114
cs workqueue.cs
using System;
using System.Text;
using System.Threading ;
using System.Collections;
namespace WorkQueue
{
class WorkQueue
{
private int nThreads; //工作线程数
privat
www.eeworm.com/read/173823/9634038
java extendthreaddemo.java
// Chapter 7, Listing 1
public class ExtendThreadDemo extends java.lang.Thread
{
int threadNumber;
public ExtendThreadDemo ( int num )
{
// Assign to member variable
threadNumber = num
www.eeworm.com/read/173823/9634053
java runnablethreaddemo.java
// Chapter 7, Listing 2
public class RunnableThreadDemo implements java.lang.Runnable
{
// Run method is executed when thread first started
public void run()
{
System.out.println ("I am an
www.eeworm.com/read/171439/9754487
cs ch3_04.cs
using System;
using System.Threading;
public class CH3_4
{
Thread[] threads;
int whichThread;
int runCount;
public void CheckThread()
{
// lock(thi
www.eeworm.com/read/171439/9754868
cs ch7_05.cs
using System;
using System.IO;
using System.Threading;
public class CH7_5
{
Thread[] threads;
string[] sFileNames;
int[] iThreadIDs;
public void RunThread()
www.eeworm.com/read/415628/11060608
java main.java
public class Main {
public static void main(String[] args) {
Table table = new Table(3);
Thread[] threads = {
new MakerThread("MakerThread-1", table, 31415),
www.eeworm.com/read/415628/11060627
java channel.java
public final class Channel {
public Channel(int threads) {
}
public void startWorkers() {
}
public void putRequest(final Request request) {
new Thread() {
www.eeworm.com/read/415628/11060635
java channel.java
public final class Channel {
public Channel(int threads) {
}
public void startWorkers() {
}
public void putRequest(final Request request) {
new Thread() {