代码搜索:信息共享
找到约 10,000 项符合「信息共享」的源代码
代码结果 10,000
www.eeworm.com/read/281160/4118414
h apispylib.h
//////////////////////////////////
// APISpyLib.h文件
#ifndef __APISPYLIB_H__
#define __APISPYLIB_H__
#include "ShareMemory.h"
// 共享内存名称
#define SHAREMEM "APISpyLib"
// 发送给主程序的通知消息
#defi
www.eeworm.com/read/279180/4138289
makefile
DLL = Counter
ML_FLAG = /c /coff
LINK_FLAG = /subsystem:windows /Dll
####################################################
# 创建共享数据段的DLL时使用的连接选项
# LINK_FLAG = /subsystem:windows /Dll /section:
www.eeworm.com/read/416044/2129852
java counter.java
package ch05;
/***
*
* @author qq
*
* 在线人数计数器,共享bean的使用
*/
public class Counter {
public Counter(){} //构造函数
private int onNumber=0; //在线人数初始化
//
www.eeworm.com/read/360799/2959504
java numberpc.java
import javax.swing.JApplet;
public class NumberPC extends JApplet{
NumStore numStore=new NumStore(); //两个线程的共享对象
ProducerThread producerThd=new ProducerThread(); //生产者线程
ConsumerThread consume
www.eeworm.com/read/259922/4336142
makefile
DLL = Counter
ML_FLAG = /c /coff
LINK_FLAG = /subsystem:windows /Dll
####################################################
# 创建共享数据段的DLL时使用的连接选项
# LINK_FLAG = /subsystem:windows /Dll /section:
www.eeworm.com/read/266116/11239832
cpp demo_5_repeated_inheritance_ambiguity_2.cpp
//***************************************************
// 多继承的特例的重复继承下的二义性问题
// 解决方法二:虚基类共享
//***************************************************
# include
class A //公共间接基类
{