代码搜索:singleton
找到约 4,696 项符合「singleton」的源代码
代码结果 4,696
www.eeworm.com/read/126184/14439496
cpp curioussingleton.cpp
//: C10:CuriousSingleton.cpp
// From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison.
// (c) 1995-2004 MindView, Inc. All Rights Reserved.
// See source code use permissions stated in t
www.eeworm.com/read/126184/14439513
cpp singletonpattern.cpp
//: C10:SingletonPattern.cpp
// From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison.
// (c) 1995-2004 MindView, Inc. All Rights Reserved.
// See source code use permissions stated in t
www.eeworm.com/read/126184/14439535
cpp singletonpattern2.cpp
//: C10:SingletonPattern2.cpp
// From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison.
// (c) 1995-2004 MindView, Inc. All Rights Reserved.
// See source code use permissions stated in
www.eeworm.com/read/226560/14459054
cpp singletonpattern.cpp
//: C09:SingletonPattern.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#include
using
www.eeworm.com/read/226560/14459064
cpp singletonpattern2.cpp
//: C09:SingletonPattern2.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#include
usin
www.eeworm.com/read/124781/14544779
cpp singletondoc.cpp
// SingletonDoc.cpp : implementation of the CSingletonDoc class
//
// This file is part of Singleton application to demonstrate the concept of Singleton classes.
// This file is generated by AppW
www.eeworm.com/read/124167/14591901
java staticprint.java
final class Spooler
{
//a static class implementation of Singleton pattern
static public void print(String s)
{
System.out.println(s);
}
}
//==============================
public class s
www.eeworm.com/read/124167/14591904
java staticspool.java
final class Spooler
{
//a static class implementation of Singleton pattern
static public void print(String s)
{
System.out.println(s);
}
}
//==============================
public class s
www.eeworm.com/read/124166/14592292
makefile
# From Thinking in Patterns (with Java) by Bruce Eckel
# At http://www.BruceEckel.com
# (c)2003 Bruce Eckel
# Copyright notice in Copyright.txt
# Automatically-generated MAKEFILE
# For examples
www.eeworm.com/read/124166/14592293
xml build.xml
build.xml for singleton of "Thinking in Java, 3rd Edition"
by Bruce