代码搜索:singleton

找到约 4,696 项符合「singleton」的源代码

代码结果 4,696
www.eeworm.com/read/13911/287319

m svm.m

function varargout = SVM(varargin) %SVM M-file for SVM.fig % SVM, by itself, creates a new SVM or raises the existing % singleton*. % % H = SVM returns the handle to a new SVM or the ha
www.eeworm.com/read/457459/1597206

java ui.java

package org.sunflow.system; import org.sunflow.system.ui.ConsoleInterface; import org.sunflow.system.ui.SilentInterface; /** * Static singleton interface to a UserInterface object. This is se
www.eeworm.com/read/245316/4504354

java alreadyexistsexception.java

package javax.jmi.reflect; /** Exception thrown by refCreateInstance and create methods * when a client attempts to create the second instance of a singleton. * I thi
www.eeworm.com/read/240569/4571955

java clipboard.java

/* * @(#)Clipboard.java 5.1 * */ package CH.ifa.draw.util; import java.awt.*; import java.util.*; /** * A temporary replacement for a global clipboard. * It is a singleton that can be used to
www.eeworm.com/read/232657/4696666

java bigcharfactory.java

import java.util.Hashtable; public class BigCharFactory { // 管理现有的BigChar的对象实例 private Hashtable pool = new Hashtable(); // Singleton Pattern private static BigCharFactory singl
www.eeworm.com/read/232657/4696681

java bigcharfactory.java

import java.util.Hashtable; public class BigCharFactory { // 管理现有的BigChar的对象实例 private Hashtable pool = new Hashtable(); // Singleton Pattern private static BigCharFactory singl
www.eeworm.com/read/232657/4696696

java bigcharfactory.java

import java.util.Hashtable; public class BigCharFactory { // 管理现有的BigChar的对象实例 private Hashtable pool = new Hashtable(); // Singleton Pattern private static BigCharFactory singl
www.eeworm.com/read/279177/4138895

java visualvertexpainterfactoryimpl.java

package salvo.jesus.graph.visual.drawing; import salvo.jesus.graph.*; import salvo.jesus.graph.visual.*; /** * An implmentation of PainterFactory interface * that returns a singleton inst
www.eeworm.com/read/269040/4247874

java coffeeimpsingleton.java

package org.gof.structure.bridge; //单态类(Singleton)用来hold当前的CoffeeImp public class CoffeeImpSingleton { private static CoffeeImp coffeeImp; public CoffeeImpSingleton(CoffeeImp coffeeImpIn) {
www.eeworm.com/read/268871/4249026

h configurator.h

#ifndef __CONFIGURATOR_H__ #define __CONFIGURATOR_H__ 1 #include #include "skiplist.h" class str; /* * The Configurator is a singleton object for handling configuration information * th