代码搜索:instance
找到约 10,000 项符合「instance」的源代码
代码结果 10,000
www.eeworm.com/read/373321/6947850
java catonetestresult.java
package shared;
import java.lang.*;
/** This object contains the result information on one instance passed through
* an inducer.
* @author James Louis 12/08/2000 Ported to Java.
*/
public
www.eeworm.com/read/373321/6947868
java instsampleelement.java
package shared;
import java.lang.*;
/** Internal structure for the InsanceList class. Used for taking samples from the
* list.
* @see InstanceList
*/
public class InstSampleElement { // u
www.eeworm.com/read/197440/6964238
cpp snowcontainer.cpp
/* Copyright (c) 2004, Nokia. All rights reserved */
// INCLUDE FILES
#include "SnowContainer.h"
// ================= MEMBER FUNCTIONS =======================
// ----------------------------
www.eeworm.com/read/469098/6977392
h smshandler.h
#ifndef __CSMSHANDLER_H__
#define __CSMSHANDLER_H__
// INCLUDES
#include
#include
#include
#include
// CONSTANTS
const TInt KBfrLength = 20;
www.eeworm.com/read/468037/6998299
h rpsdocument.h
// Copyright (c) Symbian Ltd 2008. All rights reserved.
#ifndef __RPSDOCUMENT_H__
#define __RPSDOCUMENT_H__
// INCLUDES
#include
#include
// FORWARD DECL
www.eeworm.com/read/466324/7032785
java exercise14_11.java
// Exercise14_11.java: Simulate a running fan
import javax.swing.*;
import java.awt.*;
public class Exercise14_11 extends JApplet {
private FanControl fanControl = new FanControl();
publi
www.eeworm.com/read/465523/7049438
cpp yahooimagesearchdocument.cpp
/*
========================================================================
Name : YahooImageSearchDocument.cpp
Author :
Copyright : Copyright 2006 Nokia Corporation
Description :
===
www.eeworm.com/read/465644/7051143
h csl_gptimer.h
/** ============================================================================
* @file csl_gptimer.h
*
* @path $(CSLPATH)\arm\gptimer\src
*
* @desc API header file for general pur
www.eeworm.com/read/465686/7051856
h queue.h
/*****************************************************************************
Copyright (c) 2001 - 2008, The Board of Trustees of the University of Illinois.
All rights reserved.
Redistribution and
www.eeworm.com/read/465716/7052477
py singletonpattern.py
#: c01:SingletonPattern.py
class OnlyOne:
class __OnlyOne:
def __init__(self, arg):
self.val = arg
def __str__(self):
return `self` + self.val
instance = None
def _