搜索结果
找到约 42 项符合
Shared 的查询结果
按分类筛选
Java编程 Conservator extends on the concept of a Flyweight Factory by allowing shared Flyweight objects to be
Conservator extends on the concept of a Flyweight Factory by allowing shared Flyweight objects to be mutated after creation without undesired side effects.
Java编程 How to run: 1. compile Callback.java 2. compile the native code into a shared lib cl /Ie:j2sdk1.4.0i
How to run: 1. compile Callback.java 2. compile the native code into a shared lib cl /Ie:\j2sdk1.4.0\include /Ie:\j2sdk1.4.0\include\win32 /LD /FeMyImpOfCallback.dll Callback.c 3. run: java Callback
Applet Shows how to use all list selection modes, using a list selection listener that s shared between a t
Shows how to use all list selection modes, using a list selection listener that s shared between a table and list.
操作系统开发 Sample code that demostrates how to use shared events in Kernel mode.
Sample code that demostrates how to use shared events in Kernel mode.
Windows CE #ifdef _AFXDLL Enable3dControls() // Call this when using MFC in a shared DLL #else Enable3d
#ifdef _AFXDLL
Enable3dControls() // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic() // Call this when linking to MFC statically
#endif
CPreviewDialogDlg dlg
m_pMainWnd = &dlg
int nResponse = dlg.DoModal()
if (nResponse == IDOK)
{
// TODO: Place code here to ...
其他数据库 f your application uses MFC in a shared DLL, and your application is in a language other than the
f your application uses MFC in a shared DLL, and your application is
in a language other than the operating system s current language, you
will need to copy the corresponding localized resources MFC42XXX.DLL
from the Microsoft Visual C++ CD-ROM onto the system or system32 directory,
and rename it t ...
matlab例程 Matlab programming interface with the dsp and VC + MATLAB7 C Shared Library。
Matlab programming interface with the dsp and VC + MATLAB7 C Shared Library。
其他 Introduction Some times it is required that we build a shared library (DLL) from an m-file. M-files
Introduction
Some times it is required that we build a shared library (DLL) from an m-file. M-files are functions that are written in Matlab editor and can be used from Matlab command prompt. In m-files, we employ Matlab built-in functions or toolbox functions to compute something. In my past articl ...
其他 Introduction A shared library is a collection of functions that are available for use by one or mor
Introduction
A shared library is a collection of functions that are available for use by one or more applications running on a system. On Windows operating systems, the library is compiled into a dynamic link library (.dll) file. At run-time, the library is loaded into memory and made accessible to ...
Java编程 There is a shared object – int array[] between Write and Read. Write sets the array, Read gets the a
There is a shared object – int array[] between Write and Read. Write sets the array, Read gets the array and sorts ascending. Write a program to implement the write/read question by using synchronization mechanism and GUI.