代码搜索:singleton
找到约 4,696 项符合「singleton」的源代码
代码结果 4,696
www.eeworm.com/read/122257/14706999
htm pat3e.htm
function setFocus() {
if ((navigator.appName != "Netscape") && (parseFloat(navigator.appVersion) == 2)) {
return;
} else {
self.focus();
}
}
Singlet
www.eeworm.com/read/284998/8877843
cpp functionstaticsingleton.cpp
//: C09:FunctionStaticSingleton.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
class Singleton1
www.eeworm.com/read/281673/9142470
cpp functionstaticsingleton.cpp
//: C09:FunctionStaticSingleton.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
class Singleton1
www.eeworm.com/read/355030/10299908
cpp functionstaticsingleton.cpp
//: C25:FunctionStaticSingleton.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
class Singleton1
www.eeworm.com/read/271450/10994020
cpp functionstaticsingleton.cpp
//: C25:FunctionStaticSingleton.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
class Singl
www.eeworm.com/read/443686/7628403
cpp functionstaticsingleton.cpp
//: C09:FunctionStaticSingleton.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
class Singleton1
www.eeworm.com/read/142793/12918970
cpp functionstaticsingleton.cpp
//: C10:FunctionStaticSingleton.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 stat
www.eeworm.com/read/140545/13076889
cpp functionstaticsingleton.cpp
//: C10:FunctionStaticSingleton.cpp
class Singleton1 {
Singleton1() {}
public:
static Singleton1& ref() {
static Singleton1 single;
return single;
}
};
class Singleton2 {
S
www.eeworm.com/read/139903/5795835
cpp functionstaticsingleton.cpp
//: C09:FunctionStaticSingleton.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
class Singleton1
www.eeworm.com/read/477671/6730707
cpp functionstaticsingleton.cpp
//: C11:FunctionStaticSingleton.cpp
// From "Thinking in C++, 2nd Edition, Volume 2"
// by Bruce Eckel & Chuck Allison, (c) 2001 MindView, Inc.
// Available at www.BruceEckel.com.
//{L} ../TestSui