0

How to get the key from Trove TIntObjectHashMap for a value that exists and been found in the map ??

if(map.containsValue(source)) {
        for (Entry<Integer, String> entry : map.entrySet()) { // entrySet() is not recognized by Trove? and i can not find any corresponding method ??
            if (entry.getValue().equals(source)) {
                entry.getKey();
        }
    }
}
4

2 回答 2

1

我会做这样的事情:

TIntObjectMap<String> map = new TIntObjectHashMap<>();
map.put( 1, "a" );
map.put( 2, "b" );

AtomicInteger found = new AtomicInteger( -1 );
map.forEachEntry( new TIntObjectProcedure<String>() {
    @Override
    public boolean execute( int key, String value ) {
        if ( value.equals( "a" ) ) {
            found.set( key );
            return false;
        }
        return true;
    }
} );
System.out.println( "Found: " + found.get() );

要记住的事情:

  1. 显然,可能有多个具有相同值的键。
  2. forEach* 方法是遍历 Trove 集合的最有效方法。
  3. 如果对象分配对您来说是一个性能问题,您可以重用这些过程。
  4. 如果“-1”(或其他)是映射的有效键,您可以使用另一个 AtomicBoolean 来指示您是否找到了该值。
于 2014-09-30T13:53:59.017 回答
0

你可以这样试试

TIntObjectHashMap<String> map = new TIntObjectHashMap<>();
map.put(1, "a");
map.put(2, "b");
//convert   TIntObjectHashMap to java.util.Map<Integer,String>
Map<Integer, String> utilMap = new HashMap<>();
for (int i : map.keys()) {
    utilMap.put(i, map.get(i));
}
Integer key=null;
if (map.containsValue("a")) {
    for (Map.Entry<Integer, String> entry : utilMap.entrySet()) { // issue solved
         if (entry.getValue().equals("a")) {
            key=entry.getKey();
           }
      }
}
System.out.println(key);

输出:

1
于 2014-09-30T12:03:43.517 回答