Evet, kullanın HashMap
... ama özel bir şekilde: HashMap
bir sözde olarak kullanmayı denediğim tuzak Set
, "gerçek" öğelerinin Map/Set
ve "aday" öğelerin, yani bir equal
öğesi zaten mevcut. Bu kusursuz değildir, ancak sizi tuzaktan uzaklaştırır:
class SelfMappingHashMap<V> extends HashMap<V, V>{
@Override
public String toString(){
// otherwise you get lots of "... object1=object1, object2=object2..." stuff
return keySet().toString();
}
@Override
public V get( Object key ){
throw new UnsupportedOperationException( "use tryToGetRealFromCandidate()");
}
@Override
public V put( V key, V value ){
// thorny issue here: if you were indavertently to `put`
// a "candidate instance" with the element already in the `Map/Set`:
// these will obviously be considered equivalent
assert key.equals( value );
return super.put( key, value );
}
public V tryToGetRealFromCandidate( V key ){
return super.get(key);
}
}
Sonra bunu yapın:
SelfMappingHashMap<SomeClass> selfMap = new SelfMappingHashMap<SomeClass>();
...
SomeClass candidate = new SomeClass();
if( selfMap.contains( candidate ) ){
SomeClass realThing = selfMap.tryToGetRealFromCandidate( candidate );
...
realThing.useInSomeWay()...
}
Ama ... şimdi candidate
programcı hemen onu koymadığı sürece bir şekilde kendini imha etmesini Map/Set
istiyorsun ... bunu birleştirmek istemezsin contains
, candidate
böylece onu kullanmadıkça onu kullanmaz Map
"anathema ". Belki SomeClass
yeni bir Taintable
arayüz uygulamak olabilir .
Daha tatmin edici bir çözüm, aşağıdaki gibi bir GettableSet'tir . Bununla birlikte, bunun çalışması SomeClass
için, tüm kurucuları görünür hale getirmek için tasarımından sorumlu olmalısınız (veya ... bunun için bir sarmalayıcı sınıfı tasarlayıp kullanmaya istekli olmalısınız ):
public interface NoVisibleConstructor {
// again, this is a "nudge" technique, in the sense that there is no known method of
// making an interface enforce "no visible constructor" in its implementing classes
// - of course when Java finally implements full multiple inheritance some reflection
// technique might be used...
NoVisibleConstructor addOrGetExisting( GettableSet<? extends NoVisibleConstructor> gettableSet );
};
public interface GettableSet<V extends NoVisibleConstructor> extends Set<V> {
V getGenuineFromImpostor( V impostor ); // see below for naming
}
Uygulama:
public class GettableHashSet<V extends NoVisibleConstructor> implements GettableSet<V> {
private Map<V, V> map = new HashMap<V, V>();
@Override
public V getGenuineFromImpostor(V impostor ) {
return map.get( impostor );
}
@Override
public int size() {
return map.size();
}
@Override
public boolean contains(Object o) {
return map.containsKey( o );
}
@Override
public boolean add(V e) {
assert e != null;
V result = map.put( e, e );
return result != null;
}
@Override
public boolean remove(Object o) {
V result = map.remove( o );
return result != null;
}
@Override
public boolean addAll(Collection<? extends V> c) {
// for example:
throw new UnsupportedOperationException();
}
@Override
public void clear() {
map.clear();
}
// implement the other methods from Set ...
}
Daha NoVisibleConstructor
sonra sınıflarınız şöyle görünür:
class SomeClass implements NoVisibleConstructor {
private SomeClass( Object param1, Object param2 ){
// ...
}
static SomeClass getOrCreate( GettableSet<SomeClass> gettableSet, Object param1, Object param2 ) {
SomeClass candidate = new SomeClass( param1, param2 );
if (gettableSet.contains(candidate)) {
// obviously this then means that the candidate "fails" (or is revealed
// to be an "impostor" if you will). Return the existing element:
return gettableSet.getGenuineFromImpostor(candidate);
}
gettableSet.add( candidate );
return candidate;
}
@Override
public NoVisibleConstructor addOrGetExisting( GettableSet<? extends NoVisibleConstructor> gettableSet ){
// more elegant implementation-hiding: see below
}
}
PS, böyle bir NoVisibleConstructor
sınıfla ilgili bir teknik sorun : böyle bir sınıfın doğası gereği final
istenmeyen bir itiraz olabilir. Aslında her zaman kukla parametresiz bir protected
kurucu ekleyebilirsiniz :
protected SomeClass(){
throw new UnsupportedOperationException();
}
... en azından bir alt sınıfın derlenmesine izin verirdi. Ardından getOrCreate()
, alt sınıfa başka bir fabrika yöntemini eklemeniz gerekip gerekmediğini düşünmeniz gerekir .
Son adım , bir liste için soyut bir temel sınıftır (NB "öğesi", bir küme için "üye") set üyeleriniz için bunun gibi (mümkünse - yine, sınıfın kontrolünüz altında olmadığı bir sarıcı sınıf kullanma kapsamı , veya zaten bir temel sınıf, vb. varsa), maksimum uygulama gizleme için:
public abstract class AbstractSetMember implements NoVisibleConstructor {
@Override
public NoVisibleConstructor
addOrGetExisting(GettableSet<? extends NoVisibleConstructor> gettableSet) {
AbstractSetMember member = this;
@SuppressWarnings("unchecked") // unavoidable!
GettableSet<AbstractSetMembers> set = (GettableSet<AbstractSetMember>) gettableSet;
if (gettableSet.contains( member )) {
member = set.getGenuineFromImpostor( member );
cleanUpAfterFindingGenuine( set );
} else {
addNewToSet( set );
}
return member;
}
abstract public void addNewToSet(GettableSet<? extends AbstractSetMember> gettableSet );
abstract public void cleanUpAfterFindingGenuine(GettableSet<? extends AbstractSetMember> gettableSet );
}
... kullanımı (çoğunlukla içerideki oldukça açıktır SomeClass
'ın static
fabrika yöntemiyle):
SomeClass setMember = new SomeClass( param1, param2 ).addOrGetExisting( set );
SortedSet
harita tabanlı (örneğinTreeSet
erişime izin verenfirst()
) ve uygulamalarını kullanın .