我正在寻找一个类似于阿雷拉派分子的java数据结构,如果我只做一个价值论点的附加或推力,那么我就自动回到一个指数。
例如:
ArrayList<String> elements = new ArrayList<String>();
String element = "foo";
String elementTwo = "bar";
int index1 = elements.add(element); //note this does not exist, i.e. returns bool in api
int index2 = elements.add(elementTwo);
System.out.println(elements.get(index1)); //would give "foo"
我可以看到在ArrayList周围写出一个包裹的班子,它管理着每增加一次手术所加固的反响,并援引:
ArrayList.add(int index, E element)
Do you really need to write a wrapper around ArrayList for this? This seems like something simple enough to be provided out of the box somewhere?
Edit:
我需要为这一使用案例确定和独一无二的指数(钥匙)。 提出了地图,我同意。 是否有任何人了解使你自动(单独)产生价值的关键地图的执行情况? 我只是试图决定我是否需要为此执行自己的总结。