代码搜索:singleton
找到约 4,696 项符合「singleton」的源代码
代码结果 4,696
www.eeworm.com/read/405333/11465126
cpp singletonpattern.cpp
//: C10:SingletonPattern.cpp
// From "Thinking in C++, 2nd Edition, Volume 2"
// by Bruce Eckel & Chuck Allison, (c) 2003 MindView, Inc.
// Available at www.BruceEckel.com.
#include
us
www.eeworm.com/read/405333/11465129
cpp singletonpattern2.cpp
//: C10:SingletonPattern2.cpp
// From "Thinking in C++, 2nd Edition, Volume 2"
// by Bruce Eckel & Chuck Allison, (c) 2003 MindView, Inc.
// Available at www.BruceEckel.com.
// Meyers' Singleton
www.eeworm.com/read/403321/11519118
cs singletonstructural.cs
using System;
using System.Collections;
using System.Windows.Forms;
namespace DesignPattern.SingletonStructural
{
class SingletonStructural : AbstractPattern
{
public static v
www.eeworm.com/read/158516/11604068
txt index.txt
adapter.html
Adapter 模式
builder.html
Builder Pattern(Builder模式)
command.html
Command 模式
decorator.html
decorator 模式
Factory.html
Factory模式和Abstract Factory模式
jive.html
Jive 中的设计
www.eeworm.com/read/258191/11878064
cpp singletonpattern.cpp
//: C25:SingletonPattern.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
#include
using
www.eeworm.com/read/258191/11878084
cpp singletonpattern2.cpp
//: C25:SingletonPattern2.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
#include
usin
www.eeworm.com/read/155258/11887409
cpp cxml.cpp
//txml.cpp
#include "xml.h"
int main(int argc, char* argv[])
{
CXMLConfig cfg;
printf("Loading configuration file: upup.xml...\n");
int e = cfg.load("upup.xml");
if(e)
{
CXMLParser
www.eeworm.com/read/344114/11908321
cpp main.cpp
/********************************************************************
created: 2006/07/20
filename: Main.cpp
author: 李创
http://www.cppblog.com/converse/
purpose: Singleton
www.eeworm.com/read/343387/11953100
txt java陷阱----面试题集及解答.txt
找工作要面试,有面试就有对付面试的办法。以下一些题目来自我和我朋友痛苦的面试经历,提这些问题的公司包括IBM, E*Trade, Siebel, Motorola, SUN,以及其它大小公司。
面试是没什么道理可讲的,它的题目有的不合情理、脱离实际。有在纸上写的,有当面考你的,也有在电话里问的,给你IDE的估计很少(否则你赶快去买彩票,说不定中)。所以如果你看完此文后,请不要抱怨说这些问 ...
www.eeworm.com/read/154432/11961327
txt java 32 问.txt
第一,谈谈final, finally, finalize的区别。
第二,Anonymous Inner Class (匿名内部类) 是否可以extends(继承)其它类,是否可以implements(实现)interface(接口)?
第三,Static Nested Class 和 Inner Class的不同,说得越多越好(面试题有的很笼统)。