代码搜索:objects

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

代码结果 10,000
www.eeworm.com/read/230169/14303397

mki mdlapp.mki

#---------------------------------------------------------------------- # # MDL Example Applications Make Include File # # $Workfile: mdlapp.mki $ # $Revision: 1.0 $ # $Date: 15
www.eeworm.com/read/128128/14314652

java gameobject.java

import javax.microedition.midlet.*; import javax.microedition.lcdui.*; import javax.microedition.lcdui.game.*; public class GameObject { private int[][] Objects;//敌人状态数组 //Objects[][0] ----
www.eeworm.com/read/128128/14314655

java explosion.java

import javax.microedition.midlet.*; import javax.microedition.lcdui.*; import javax.microedition.lcdui.game.*; public class explosion { private int[][] Objects;//爆炸状态数组 //Objects[][0] -----x
www.eeworm.com/read/128079/14317379

bpk vclskin_cb5d.bpk

www.eeworm.com/read/128079/14317393

bpk vclskin_cb5r.bpk

www.eeworm.com/read/128030/14318572

cpp statdata.cpp

// statdata.cpp // static class data #include using namespace std; //////////////////////////////////////////////////////////////// class foo { private: static int count
www.eeworm.com/read/127767/14336160

txt e347. creating a copy of a collection.txt

These examples create a shallow copy of a collection. That is, the new collection contains references to same objects as the source collection; the objects are not cloned. List stuff = Arrays.as
www.eeworm.com/read/127767/14337058

txt e494. registering for object changes in the directory.txt

This example registers with the directory to receive notification when changes are made to objects that have certain attributes. try { // Get event context for registering listener
www.eeworm.com/read/127541/14350531

h vector.h

#ifndef VECTOR_H #define VECTOR_H #define vector Vector class ArrayIndexOutOfBounds { }; template class vector { public: explicit vector( int theSize = 0 ) : current
www.eeworm.com/read/127116/14376890

java prototypemanager.java

package com.javapatterns.prototype.manager; import java.util.Vector; public class PrototypeManager { public void add(Prototype object) { objects.add(object); } pu