代码搜索:Collection
找到约 10,000 项符合「Collection」的源代码
代码结果 10,000
www.eeworm.com/read/112280/15490338
java failfast.java
//: c09:FailFast.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Demonstrates the "fail fast" behavior.
import java.util.*;
www.eeworm.com/read/112280/15490343
java printingcontainers.java
//: c09:PrintingContainers.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Containers print themselves automatically.
impor
www.eeworm.com/read/111083/15519069
c tree_find.c
/* Binary tree implementation of a collection */
/* Now we need to know whether one key is less, equal or greater than
another
*/
extern int KeyCmp( void *a, void *b );
/* Returns -1, 0, 1 for a
www.eeworm.com/read/111083/15519121
c testcol.c
/** Test the collection class **/
#include
#include "collection.h"
int *ItemKey( int *item )
{
return item;
}
void AddAll( collection c, int *list, int n )
{
int i;
for(i=0;i
www.eeworm.com/read/111083/15519243
html listings.html
Data Structures and Algorithms: Source Listings
www.eeworm.com/read/111067/15519623
htm chapter8.htm
Thinking in Java | Chinese Version by Trans Bot
www.eeworm.com/read/110365/15535771
java itemhome.java
import java.rmi.*;
import javax.ejb.*;
import java.util.Collection;
public interface ItemHome extends EJBHome
{
public Item create(String id,String name,String description)
throws CreateExc
www.eeworm.com/read/110365/15535789
java orderhome.java
import javax.ejb.CreateException;
import javax.ejb.EJBHome;
import javax.ejb.FinderException;
import java.rmi.RemoteException;
import java.util.Collection;
public interface OrderHome extends
www.eeworm.com/read/109973/15544415
cpp staticpoly.cpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde