代码搜索:instance

找到约 10,000 项符合「instance」的源代码

代码结果 10,000
www.eeworm.com/read/194563/5127504

tex mbcnvfil.tex

\section{\class{wxMBConvFile}}\label{wxmbconvfile} This class used to define the class instance {\bf wxConvFileName}, but nowadays {\bf wxConvFileName} is either of type wxConvLibc (on most platform
www.eeworm.com/read/194563/5127538

tex glcontext.tex

\section{\class{wxGLContext}}\label{wxglcontext} An instance of a wxGLContext represents the state of an OpenGL state machine and the connection between OpenGL and the system. The OpenGL state inclu
www.eeworm.com/read/193797/5142646

pas memoauto.pas

unit MemoAuto; { This unit implements TMemoApp, the Application automation object class for the MemoEdit application. TMemoApp is registered as a Single Instance automation class, thus causin
www.eeworm.com/read/191729/5163230

java elvis.java

// Serialzable Singleton - Page 11 import java.io.*; public class Elvis { public static final Elvis INSTANCE = new Elvis(); private Elvis() { // ... } // ... //
www.eeworm.com/read/191729/5163299

java elvis.java

// Serialzable Singleton - Page 11 import java.io.*; public class Elvis { public static final Elvis INSTANCE = new Elvis(); private Elvis() { // ... } // ... //
www.eeworm.com/read/190056/5189167

tex mbcnvfil.tex

\section{\class{wxMBConvFile}}\label{wxmbconvfile} This class used to define the class instance {\bf wxConvFileName}, but nowadays {\bf wxConvFileName} is either of type wxConvLibc (on most platform
www.eeworm.com/read/190056/5189201

tex glcontext.tex

\section{\class{wxGLContext}}\label{wxglcontext} An instance of a wxGLContext represents the state of an OpenGL state machine and the connection between OpenGL and the system. The OpenGL state inclu
www.eeworm.com/read/183674/5252827

h antlr3intstream.h

/** \file * Defines the the class interface for an antlr3 INTSTREAM. * * Certain funcitonality (such as DFAs for instance) abstract the stream of tokens * or characters in to a steam of integers.
www.eeworm.com/read/182663/5262958

js a573q088.js

// Initialize rotator instance ------------------------------------------------- if (window.rotator_client_object) {rotator_client_object.Destroy();} window.rotator_client_object = new Compone
www.eeworm.com/read/181243/5277720

java hottersingleton.java

package headfirst.singleton.subclass; public class HotterSingleton extends Singleton { // useful instance variables here private HotterSingleton() { super(); } // useful methods here }