代码搜索:线程机制
找到约 5,756 项符合「线程机制」的源代码
代码结果 5,756
www.eeworm.com/read/420071/10819835
java maze25d.java
// 程序:2.5D斜角迷宫
// 范例文件:Maze25D.java
import java.awt.*;
import java.applet.*;
import java.awt.event.*;
public class Maze25D extends Applet
implements Runnable, KeyListener // 实现多线程接口与事件处
www.eeworm.com/read/272357/10960913
c arr2sum.c
//创建2线程
#include
#include
#include
#include
#include "declare.h"
void *parr2sum(void *arg);
extern int array[ARRAY_SIZE];
int flag = 0;
int arr2sum (
www.eeworm.com/read/272357/10960916
h declare.h
#ifndef ARRAY_SIZE
#define ARRAY_SIZE 4096
#endif
struct COUNTPOINT
{
int start;
int length;
};
void MainFace();//第一界面函数
void GetDataFace();//第二界面函数
int arr2sum (int count_length);//2线程
int arrnsum
www.eeworm.com/read/374029/6964996
pas unit2.pas
{
-------------- 线程部分 ----------------
程序制作:明小子
使用工具:Delphi 7.0
程序原本于11.16日编写完毕,之后因为检测速度的问题
所以代码重新写了一遍,同时采用了多线的程检测方式!
---------------------------------------------
}
unit U
www.eeworm.com/read/374029/6965000
~pas unit2.~pas
{
-------------- 线程部分 ----------------
程序制作:明小子
使用工具:Delphi 7.0
程序原本于11.16日编写完毕,之后因为检测速度的问题
所以代码重新写了一遍,同时采用了多线的程检测方式!
---------------------------------------------
}
unit U
www.eeworm.com/read/450572/7480899
win makefile.win
# Project: 线程使用
# Makefile created by Dev-C++ 4.9.9.2
CPP = g++.exe
CC = gcc.exe
WINDRES = windres.exe
RES =
OBJ = main.o input.o output.o $(RES)
LINKOBJ = main.o input.o output.o $(RE
www.eeworm.com/read/450572/7480909
win makefile.win
# Project: 线程使用
# Makefile created by Dev-C++ 4.9.9.2
CPP = g++.exe
CC = gcc.exe
WINDRES = windres.exe
RES =
OBJ = main.o input.o output.o $(RES)
LINKOBJ = main.o input.o output.o $(RE
www.eeworm.com/read/450572/7480922
win makefile.win
# Project: 线程使用
# Makefile created by Dev-C++ 4.9.9.2
CPP = g++.exe
CC = gcc.exe
WINDRES = windres.exe
RES =
OBJ = main.o input.o output.o $(RES)
LINKOBJ = main.o input.o output.o $(RE
www.eeworm.com/read/446549/7577041
java ersblock.java
/**
* File: ErsBlock.java
* User: Administrator
* Date: Jan 15, 2003
* Describe: 俄罗斯方块的 Java 实现
*/
/**
* 块类,继承自线程类(Thread)
* 由 4 * 4 个方格(ErsBox)构成一个块,
* 控制块的移动、下落、变形等
*/
class Er
www.eeworm.com/read/296639/8085654
c mybuffer.c
/*
*
* 引用计数,动态增长的缓冲区,多线程不安全
*
* author:lin shao chuan (email:lsccsl@tom.com, msn:lsccsl@163.net)
*
*/
#include "mybuffer.h"
#include
#include
#include