代码搜索:Collection
找到约 10,000 项符合「Collection」的源代码
代码结果 10,000
www.eeworm.com/read/292516/8349770
bak printingcontainers.java.bak
//:c09:PrintingContainers.java
import java.util.*;
public class PrintingContainers
{
static Collection fill(Collection c)
{
c.add("dog");
c.add("dog");
c.add("cat");
return c;
}
www.eeworm.com/read/392244/8355414
java collectionsequence30.java
// holding/CollectionSequence30.java
import typeinfo.pets.*;
import java.util.*;
public class CollectionSequence30 implements Collection {
private Pet[] pets = Pets.createArray(8);
publi
www.eeworm.com/read/392244/8355447
java ex11(1).java
// holding/Ex11.java
// TIJ4 Chapter Holding, Exercise 11, page 409
/* Write a method that uses an Iterator to step through a Collection and
* print the toString() of each object in the container.
www.eeworm.com/read/392244/8355526
java unsupported6.java
// containers/Unsupported6.java
// TIJ4 Chapter Containers, Exercise 6, page 817
/* Note that List has additional "optional" operations that are not included
* in Collection. Write a version of Uns
www.eeworm.com/read/392244/8355607
java fill41.java
// generics/Fill41.java
// TIJ4 Chapter Generics, Exercise 41, page 737
// Modify Fill2.java to use the classes in typeinfo.pets instead
// of the Coffee classes.
// Using adapters to simulate lat
www.eeworm.com/read/174528/9583444
pls salsa_low.pls
[playlist]
NumberOfEntries=1
File1=http://160.79.128.62:6138
Title1=S K Y . F M - SALSA - Best Salsa Collection In the World!
Length1=-1
Version=2
www.eeworm.com/read/370596/9592563
java collectionsequence30.java
// holding/CollectionSequence30.java
import typeinfo.pets.*;
import java.util.*;
public class CollectionSequence30 implements Collection {
private Pet[] pets = Pets.createArray(8);
publi
www.eeworm.com/read/370596/9592590
java ex11(1).java
// holding/Ex11.java
// TIJ4 Chapter Holding, Exercise 11, page 409
/* Write a method that uses an Iterator to step through a Collection and
* print the toString() of each object in the container.