代码搜索:Collection

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

代码结果 10,000
www.eeworm.com/read/100926/6263908

readme

Shows how applications can use the ACE_Token_Collection utility. This example creates three collections and spawns a thread to operate on each. The threads use the collective acquire, renew, and
www.eeworm.com/read/161503/5552889

java subscribe.java

/* * Subscribe.java * * Version: $Revision: 1.9 $ * * Date: $Date: 2005/07/28 17:20:40 $ * * Copyright (c) 2002-2005, Hewlett-Packard Company and Massachusetts * Institute of Technology. All
www.eeworm.com/read/111083/15519248

html tut2.html

Data Structures and Algorithms: Tutorial Problems 2
www.eeworm.com/read/136989/5827529

am makefile.am

##---------------------------------------------------------------------------- ## Makefile.am,v 4.1 1999/03/20 08:06:20 othman Exp ## ## Makefile for repeating token client application
www.eeworm.com/read/100926/6263906

am makefile.am

##---------------------------------------------------------------------------- ## Makefile.am,v 4.1 1999/03/20 08:06:20 othman Exp ## ## Makefile for repeating token client application
www.eeworm.com/read/458101/7307409

asp@filename=trydhtml_collection_imglength tryit.asp@filename=trydhtml_collection_imglength

Tryit Editor v1.4 function displayad() { document.getElementByI
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/14337178

txt e345. listing the elements of a collection.txt

This example demonstrates how to iterate over the elements of various types of collections. // For a set or list for (Iterator it=collection.iterator(); it.hasNext(); ) { Object el
www.eeworm.com/read/127767/14337360

txt e341. converting an array to a collection.txt

// Fixed-size list List list = Arrays.asList(array); // Growable list list = new LinkedList(Arrays.asList(array)); // Duplicate elements are discarded Set set = ne