代码搜索:Instance
找到约 10,000 项符合「Instance」的源代码
代码结果 10,000
www.eeworm.com/read/191936/8415317
h ogle_ao.h
#ifndef OGLE_AO_H
#define OGLE_AO_H
/* Ogle - A video player
* Copyright (C) 2002 Bj鰎n Englund
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the
www.eeworm.com/read/191767/8423880
java testb.java
/**
* Test for our Singleton registry
*/
public class TestB {
public static void main(String[] args) {
// First we get a instance from SingletonB
SingletonB instance1 = S
www.eeworm.com/read/422937/8685735
java messageclassifier.java
/**
* Java program for classifying text messages into two classes.
* DMman整理http://blogger.org.cn/blog/blog.asp?name=DMman
*/
import weka.core.Attribute;
import weka.core.Instance;
import weka.c
www.eeworm.com/read/285819/8815821
java messageclassifier.java
/**
* Java program for classifying text messages into two classes.
* DMman整理http://blogger.org.cn/blog/blog.asp?name=DMman
*/
import weka.core.Attribute;
import weka.core.Instance;
import weka.c
www.eeworm.com/read/382761/9001338
cpp singleton_2.cpp
namespace DesignPattern_Singleton
{
//class Singleton
class Singleton
{
protected:
Singleton() {}
static Singleton *_instance ;
private:
Singleton(const Singleton&) ;
Singleton&
www.eeworm.com/read/382761/9001357
cpp singleton_1.cpp
namespace DesignPattern_Singleton
{
class Singleton
{
public:
static Singleton* Instance() { static Singleton _instance ; return &_instance ; } /*静态成员变量,包含了指向它的唯一实例的指针*/
protected:
Si
www.eeworm.com/read/382761/9001382
cpp singleton_3.cpp
namespace DesignPattern_Singleton
{
template < class T >
class Singleton
{
public:
static T* Instance() { static T _instance ; return &_instance ; }
protected:
Singleton() {}
private:
www.eeworm.com/read/182121/9216555
cc stdtimer.cc
// -*-c++-*-
/***************************************************************************
stdtimer.cc
The standard timer used by the simulator
www.eeworm.com/read/359499/10141963
cs spooler.cs
using System;
namespace singleSpooler
{
///
/// Prototype of Spooler Singleton
/// such that only one instane can ever exist.
///
public class Spooler {
static b
www.eeworm.com/read/162314/10315355
h singleton.h
#ifndef _SINGLETON_H_
#define _SINGLETON_H_
#include
using namespace std;
class Singleton
{
public:
static Singleton* Instance();
protected:
Singleton();
private:
st