代码搜索:Collection
找到约 10,000 项符合「Collection」的源代码
代码结果 10,000
www.eeworm.com/read/283153/9039292
cls colapipoint.cls
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "colApiPoint"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attri
www.eeworm.com/read/282456/9092782
java hashmaptest.java
import java.util.*;
class HashMapTest
{
public static void printElements(Collection c)
{
Iterator it = c.iterator();
while(it.hasNext())
{
System.out.println(it.next());
}
}
www.eeworm.com/read/380700/9134721
bas module1.bas
Attribute VB_Name = "Module1"
Public PntArray As New Collection
Public LineArray As New Collection
Public RecArray As New Collection
Public CircleArray As New Collection
Public nSelectType As Lon
www.eeworm.com/read/380622/9141135
pas cltn.pas
unit Cltn;
interface
(*
Collections.
These interfaces define a general-purpose set of collections.
Each collection interface might have one or more different classes
that implement
www.eeworm.com/read/182464/9202853
asp duilian.asp
var delta=0.15
var collection;
function floaters() {
this.items = [];
this.addItem = function(id,x,y,content)
{
document.write('
www.eeworm.com/read/377508/9273700
vb basedao.vb
Public Interface BaseDAO
Function findByID(ByVal ID As Integer) As Object
Function findAll() As Collection
End Interface
www.eeworm.com/read/179335/9360343
install
Core DMTL is a collection of templated header files only. So, you do not need to install dmtl.
To build an executable for the test programs, perform the following:
cd test
make
To clean, do:
make cl
www.eeworm.com/read/179014/9378571
cs sqliteparametercollection.cs
/********************************************************
* ADO.NET 2.0 Data Provider for SQLite Version 3.X
* Written by Robert Simpson (robert@blackcastlesoft.com)
*
* Released to the publ
www.eeworm.com/read/373369/9460974
java simplecollection.java
//: holding/SimpleCollection.java
import java.util.*;
public class SimpleCollection {
public static void main(String[] args) {
Collection c = new ArrayList();
for(in
www.eeworm.com/read/373369/9461008
java containermethods.java
//: holding/ContainerMethods.java
import net.mindview.util.*;
public class ContainerMethods {
public static void main(String[] args) {
ContainerMethodDifferences.main(args);
}
} /* Out