代码搜索:singleton
找到约 4,696 项符合「singleton」的源代码
代码结果 4,696
www.eeworm.com/read/321602/13402733
opt singleton.opt
www.eeworm.com/read/321602/13402734
dsp singleton.dsp
# Microsoft Developer Studio Project File - Name="Singleton" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86)
www.eeworm.com/read/321602/13402735
cpp singleton.cpp
#include "singleton.h"
#include
Singleton* Singleton::_Instance=0;
Singleton::~Singleton()
{}
Singleton::Singleton()
{
cout
www.eeworm.com/read/321602/13402736
h singleton.h
#ifndef single_h_h
#define single_h_h
class Singleton
{
public:
~Singleton();
static Singleton*Instance();
protected:
Singleton();
private:
static Singleton* _Instance;
};
#endif
www.eeworm.com/read/321602/13402737
plg singleton.plg
Build Log
--------------------Configuration: Singleton - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADM
www.eeworm.com/read/318168/13484815
cs singleton.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace GoogleRequester
{
public class Singleton
{
private static Singleton instance = null;
priv
www.eeworm.com/read/308016/13711300
h singleton.h
// Singleton.h: interface for the Singleton class.
//
//////////////////////////////////////////////////////////////////////
#ifndef __SINGLETON_H__
#define __SINGLETON_H__
#if _MSC_VER > 100
www.eeworm.com/read/305602/13764663
cdi singleton.cdi
www.eeworm.com/read/301709/13851495