代码搜索:instance
找到约 10,000 项符合「instance」的源代码
代码结果 10,000
www.eeworm.com/read/444086/7618521
java singlespooler.java
class Spooler
{
//this is a prototype for a printer-spooler class
//such that only one instance can ever exist
static boolean instance_flag=false; //true if 1 instance
public Spool
www.eeworm.com/read/444086/7618522
java singleprinter.java
class Printer
{
//this is a prototype for a printer-spooler class
//such that only one instance can ever exist
static boolean instance_flag=false; //true if 1 instance
public Print
www.eeworm.com/read/443396/7633624
cpp entitymanager.cpp
#include "EntityManager.h"
#include "BaseGameEntity.h"
//--------------------------- Instance ----------------------------------------
//
// this class is a singleton
//--------------------
www.eeworm.com/read/435460/7792089
c metadatamanagerinit.c
/*++
Copyright (c) 1999 - 2003 Microsoft Corporation
Module Name:
MetadataManagerInit.c
Abstract:
This is the main module of the kernel mode filter driver implementing
fil
www.eeworm.com/read/144598/12782544
java singlespooler.java
class Spooler
{
//this is a prototype for a printer-spooler class
//such that only one instance can ever exist
static boolean instance_flag=false; //true if 1 instance
public Spool
www.eeworm.com/read/144598/12782545
java singleprinter.java
class Printer
{
//this is a prototype for a printer-spooler class
//such that only one instance can ever exist
static boolean instance_flag=false; //true if 1 instance
public Print
www.eeworm.com/read/330149/12912168
java ispooler.java
public class iSpooler {
//this is a prototype for a printer-spooler class
//such that only one instance can ever exist
static boolean instance_flag = false; //true if 1 instance
www.eeworm.com/read/238749/13327106
h singleton.h
#ifndef _SINGLETON_H_
#define _SINGLETON_H_
#include
using namespace std;
class Singleton
{
public:
static Singleton* Instance();
protected:
Singleton();
private:
st