代码搜索:Collection
找到约 10,000 项符合「Collection」的源代码
代码结果 10,000
www.eeworm.com/read/315735/13537324
java weatherpanel.java
import org.apache.velocity.VelocityContext;
import org.apache.velocity.app.Velocity;
import javax.swing.*;
import javax.swing.text.html.HTMLEditorKit;
import java.awt.*;
import java.io.*;
im
www.eeworm.com/read/313151/13595063
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/313151/13595076
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/313151/13595103
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/313151/13595134
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/313005/13599183
java cadsymbolmanager.java
package com.javapatterns.prototype.cad;
// CadSymbolManager
import java.util.*;
public class CadSymbolManager
{
private Hashtable symbols = new Hashtable();
// add symbol to collection
www.eeworm.com/read/311051/13637936
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/310869/13642052
cpp test.cpp
#include
struct car{
char maker[20];
int year;
};
void main()
{
int a;
couta;
cin.get();
car * p=new car[a];
for(int i=0;i
www.eeworm.com/read/309742/13665025
java bookdbejb.java
package mypack;
import java.util.*;
import javax.ejb.*;
import java.rmi.RemoteException;
public interface BookDBEJB extends EJBObject {
public BookDetails getBookDetails(String bookI