代码搜索:HashSet
找到约 4,767 项符合「HashSet」的源代码
代码结果 4,767
www.eeworm.com/read/251875/4414103
java shoppingcart.java
public class ShoppingCart implements Serializable
{
private Set products = new HashSet();
public void add(Product product)
{
}
public void remove(Prod
www.eeworm.com/read/191729/5163222
java instrumentedhashset.java
// Broken - Inappropriate use of inheritance! - Page 71
import java.util.*;
public class InstrumentedHashSet extends HashSet {
// The number of attempted element insertions
private int
www.eeworm.com/read/191729/5163291
java instrumentedhashset.java
// Broken - Inappropriate use of inheritance! - Page 71
import java.util.*;
public class InstrumentedHashSet extends HashSet {
// The number of attempted element insertions
private int
www.eeworm.com/read/179693/5302486
java instrumentedhashset.java
// Broken - Inappropriate use of inheritance! - Page 71
import java.util.*;
public class InstrumentedHashSet extends HashSet {
// The number of attempted element insertions
private int
www.eeworm.com/read/393210/2487688
java abstractflightschedule.java
package hibernate;
import java.util.HashSet;
import java.util.Set;
/**
* AbstractFlightSchedule generated by MyEclipse - Hibernate Tools
*/
public abstract class AbstractFlightSchedule
www.eeworm.com/read/195670/8136235
java category.java
import java.util.*;
public class Category{
private String name;
private Category parentCategory;
private Set childCategories=new HashSet();
public Category
www.eeworm.com/read/471054/1433875
java abstractdatadictionarydescription.java
package com.example.gw.datadictdescription;
import java.util.HashSet;
import java.util.Set;
/**
* AbstractDataDictionaryDescription generated by MyEclipse - Hibernate Tools
*/
public a
www.eeworm.com/read/461881/1549421
java category.java
import java.util.*;
public class Category{
private String name;
private Category parentCategory;
private Set childCategories=new HashSet();
public Category
www.eeworm.com/read/331534/3407651
svn-base news.svn-base
Release 1.3 (2007-05-07)
========================
This release contains major improvements and new features.
Summary of Changes:
- HashMap and HashSet classes (Foundation)
- Tuple class templ
www.eeworm.com/read/127767/14337544
txt e352. creating a seta.txt
A set is a collection that holds unique values. Adding a value that's already in the set has no effect.
// Create the set
Set set = new HashSet();
// Add elements to the set