代码搜索:singleton
找到约 4,696 项符合「singleton」的源代码
代码结果 4,696
www.eeworm.com/read/162531/10298064
doc 写一个singleton出来.doc
www.eeworm.com/read/275831/10794242
rb 17 - implementing class and singleton methods.rb
class Regexp
def Regexp.is_valid?(str)
begin
compile(str)
valid = true
rescue RegexpError
valid = false
end
end
end
Regexp.is_valid? "The horror!"
www.eeworm.com/read/123974/14603007
h singletontest.h
#pragma once
#include "singleton/singleton.h"
#include "util/util.h"
class MySingleton : public stk::Singleton
{
public:
MySingleton(int i)
: m_int(i)
{
www.eeworm.com/read/305575/13765555
m issing.m
function[b,n]=issing(x)
%ISSING Tests whether the argument is a singleton array.
%
% ISSING(X) is true (=1) if exactly one dimension of array X has
% greater than one element, and is zero otherwis
www.eeworm.com/read/493033/6404288
m bsxfun.m
% bsxfun does binary operation with singleton expansion (uses bsxarg)
%--------------------------------------------------------------------------
% MATLAB (R) is a trademark of The Mathworks (R) Corp
www.eeworm.com/read/136989/5830367
h olt_export.h
// -*- C++ -*-
// OLT_Export.h,v 1.2 2000/10/10 22:16:08 nanbor Exp
// Definition for Win32 Export directives.
// This file is generated automatically by generate_export_file.pl
// -------------
www.eeworm.com/read/136989/5831658
h diamond_export.h
// -*- C++ -*-
// diamond_export.h,v 1.2 2000/10/10 22:16:08 nanbor Exp
// Definition for Win32 Export directives.
// This file is generated automatically by generate_export_file.pl
// ---------
www.eeworm.com/read/136989/5832194
h diamond_export.h
// -*- C++ -*-
// diamond_export.h,v 1.2 2000/10/10 22:16:08 nanbor Exp
// Definition for Win32 Export directives.
// This file is generated automatically by generate_export_file.pl
// ---------
www.eeworm.com/read/169714/5411605
h od_utl_exports.h
/* BEGIN_COPYRIGHT */
/* */
/* Open Diameter: Open-source software for the
www.eeworm.com/read/332748/12731442
txt 如何在子类中实现singleton模式.txt
如何在子类中实现singleton模式
http://www.umlchina.com/best/g33/u1149115.htm
作者 内容
henry_zhou 如何在子类中实现singleton模式?
--------------------------------------------------------------------------------