linux的例子,就是下载后到自己的机子上去运行

源代码在线查看: table.h

软件大小: 752 K
上传用户: bling
关键词: linux 运行
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include "synch-sleep.h"				class Table{				public:				     Table(int size);				     ~Table();				     int Alloc(void *object);				     void *Get(int index);				     void Release(int index);								private:				     void **table;				     int number;				     int tablesize;				     Lock *lock;				};							

相关资源