代码搜索:singleton
找到约 4,696 项符合「singleton」的源代码
代码结果 4,696
www.eeworm.com/read/382761/9001374
plg singleton_3.plg
Build Log
--------------------Configuration: Singleton_3 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\a
www.eeworm.com/read/382761/9001376
opt singleton_3.opt
www.eeworm.com/read/382761/9001377
dsw singleton_3.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/382761/9001380
dsp singleton_3.dsp
# Microsoft Developer Studio Project File - Name="Singleton_3" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x8
www.eeworm.com/read/382761/9001382
cpp singleton_3.cpp
namespace DesignPattern_Singleton
{
template < class T >
class Singleton
{
public:
static T* Instance() { static T _instance ; return &_instance ; }
protected:
Singleton() {}
private:
www.eeworm.com/read/356001/10239696
bak singleton.h.bak
////////////////////////////////////////////////////////////////////////////////
// The Loki Library
// Copyright (c) 2001 by Andrei Alexandrescu
// This code accompanies the book:
// Alexandrescu