Domanda

Se ho un oggetto che implementa il file Map interfaccia in Java e desidero scorrere ogni coppia contenuta al suo interno, qual è il modo più efficiente per scorrere la mappa?

L'ordine degli elementi dipenderà dall'implementazione specifica della mappa che ho per l'interfaccia?

È stato utile?

Soluzione

Map<String, String> map = ...
for (Map.Entry<String, String> entry : map.entrySet()) {
    System.out.println(entry.getKey() + "/" + entry.getValue());
}

Altri suggerimenti

Per riassumere le altre risposte e combinarle con ciò che so, ho trovato 10 modi principali per farlo (vedi sotto).Inoltre, ho scritto alcuni test delle prestazioni (vedi risultati di seguito).Ad esempio, se vogliamo trovare la somma di tutte le chiavi e i valori di una mappa, possiamo scrivere:

  1. Utilizzando iteratore E Mappa.Entrata

    long i = 0;
    Iterator<Map.Entry<Integer, Integer>> it = map.entrySet().iterator();
    while (it.hasNext()) {
        Map.Entry<Integer, Integer> pair = it.next();
        i += pair.getKey() + pair.getValue();
    }
    
  2. Utilizzando per ciascuno E Mappa.Entrata

    long i = 0;
    for (Map.Entry<Integer, Integer> pair : map.entrySet()) {
        i += pair.getKey() + pair.getValue();
    }
    
  3. Utilizzando per ciascuno da Java8

    final long[] i = {0};
    map.forEach((k, v) -> i[0] += k + v);
    
  4. Utilizzando mazzo di chiavi E per ciascuno

    long i = 0;
    for (Integer key : map.keySet()) {
        i += key + map.get(key);
    }
    
  5. Utilizzando mazzo di chiavi E iteratore

    long i = 0;
    Iterator<Integer> itr2 = map.keySet().iterator();
    while (itr2.hasNext()) {
        Integer key = itr2.next();
        i += key + map.get(key);
    }
    
  6. Utilizzando per E Mappa.Entrata

    long i = 0;
    for (Iterator<Map.Entry<Integer, Integer>> entries = map.entrySet().iterator(); entries.hasNext(); ) {
        Map.Entry<Integer, Integer> entry = entries.next();
        i += entry.getKey() + entry.getValue();
    }
    
  7. Utilizzando Java8 API di flusso

    final long[] i = {0};
    map.entrySet().stream().forEach(e -> i[0] += e.getKey() + e.getValue());
    
  8. Utilizzando Java8 Streaming API parallelo

    final long[] i = {0};
    map.entrySet().stream().parallel().forEach(e -> i[0] += e.getKey() + e.getValue());
    
  9. Utilizzando IterableMap Di Apache Collections

    long i = 0;
    MapIterator<Integer, Integer> it = iterableMap.mapIterator();
    while (it.hasNext()) {
        i += it.next() + it.getValue();
    }
    
  10. Utilizzando MutableMap delle collezioni Eclipse (CS).

    final long[] i = {0};
    mutableMap.forEachKeyValue((key, value) -> {
        i[0] += key + value;
    });
    

Test di prestazione (modalità = AverageTime, sistema = Windows 8.1 a 64 bit, Intel i7-4790 3,60 GHz, 16 GB)

  1. Per una mappa piccola (100 elementi), il punteggio migliore è 0,308

    Benchmark                          Mode  Cnt  Score    Error  Units
    test3_UsingForEachAndJava8         avgt  10   0.308 ±  0.021  µs/op
    test10_UsingEclipseMap             avgt  10   0.309 ±  0.009  µs/op
    test1_UsingWhileAndMapEntry        avgt  10   0.380 ±  0.014  µs/op
    test6_UsingForAndIterator          avgt  10   0.387 ±  0.016  µs/op
    test2_UsingForEachAndMapEntry      avgt  10   0.391 ±  0.023  µs/op
    test7_UsingJava8StreamApi          avgt  10   0.510 ±  0.014  µs/op
    test9_UsingApacheIterableMap       avgt  10   0.524 ±  0.008  µs/op
    test4_UsingKeySetAndForEach        avgt  10   0.816 ±  0.026  µs/op
    test5_UsingKeySetAndIterator       avgt  10   0.863 ±  0.025  µs/op
    test8_UsingJava8StreamApiParallel  avgt  10   5.552 ±  0.185  µs/op
    
  2. Per una mappa con 10000 elementi, il punteggio migliore è 37,606

    Benchmark                           Mode   Cnt  Score      Error   Units
    test10_UsingEclipseMap              avgt   10    37.606 ±   0.790  µs/op
    test3_UsingForEachAndJava8          avgt   10    50.368 ±   0.887  µs/op
    test6_UsingForAndIterator           avgt   10    50.332 ±   0.507  µs/op
    test2_UsingForEachAndMapEntry       avgt   10    51.406 ±   1.032  µs/op
    test1_UsingWhileAndMapEntry         avgt   10    52.538 ±   2.431  µs/op
    test7_UsingJava8StreamApi           avgt   10    54.464 ±   0.712  µs/op
    test4_UsingKeySetAndForEach         avgt   10    79.016 ±  25.345  µs/op
    test5_UsingKeySetAndIterator        avgt   10    91.105 ±  10.220  µs/op
    test8_UsingJava8StreamApiParallel   avgt   10   112.511 ±   0.365  µs/op
    test9_UsingApacheIterableMap        avgt   10   125.714 ±   1.935  µs/op
    
  3. Per una mappa con 100.000 elementi, il punteggio migliore è 1184.767

    Benchmark                          Mode   Cnt  Score        Error    Units
    test1_UsingWhileAndMapEntry        avgt   10   1184.767 ±   332.968  µs/op
    test10_UsingEclipseMap             avgt   10   1191.735 ±   304.273  µs/op
    test2_UsingForEachAndMapEntry      avgt   10   1205.815 ±   366.043  µs/op
    test6_UsingForAndIterator          avgt   10   1206.873 ±   367.272  µs/op
    test8_UsingJava8StreamApiParallel  avgt   10   1485.895 ±   233.143  µs/op
    test5_UsingKeySetAndIterator       avgt   10   1540.281 ±   357.497  µs/op
    test4_UsingKeySetAndForEach        avgt   10   1593.342 ±   294.417  µs/op
    test3_UsingForEachAndJava8         avgt   10   1666.296 ±   126.443  µs/op
    test7_UsingJava8StreamApi          avgt   10   1706.676 ±   436.867  µs/op
    test9_UsingApacheIterableMap       avgt   10   3289.866 ±  1445.564  µs/op
    

Grafici (test delle prestazioni in base alle dimensioni della mappa)

Enter image description here

Tabella (test delle prestazioni in base alle dimensioni della mappa)

          100     600      1100     1600     2100
test10    0.333    1.631    2.752    5.937    8.024
test3     0.309    1.971    4.147    8.147   10.473
test6     0.372    2.190    4.470    8.322   10.531
test1     0.405    2.237    4.616    8.645   10.707
test2     0.376    2.267    4.809    8.403   10.910
test7     0.473    2.448    5.668    9.790   12.125
test9     0.565    2.830    5.952   13.220   16.965
test4     0.808    5.012    8.813   13.939   17.407
test5     0.810    5.104    8.533   14.064   17.422
test8     5.173   12.499   17.351   24.671   30.403

Tutti i test sono attivi GitHub.

In Java 8 puoi farlo in modo pulito e veloce utilizzando le nuove funzionalità lambda:

 Map<String,String> map = new HashMap<>();
 map.put("SomeKey", "SomeValue");
 map.forEach( (k,v) -> [do something with key and value] );

 // such as
 map.forEach( (k,v) -> System.out.println("Key: " + k + ": Value: " + v));

Il tipo di k E v verrà dedotto dal compilatore e non è necessario utilizzarlo Map.Entry più.

Vai tranquillo!

Sì, l'ordine dipende dall'implementazione specifica della mappa.

@ScArcher2 ha la sintassi Java 1.5 più elegante.Nella 1.4 farei qualcosa del genere:

Iterator entries = myMap.entrySet().iterator();
while (entries.hasNext()) {
  Entry thisEntry = (Entry) entries.next();
  Object key = thisEntry.getKey();
  Object value = thisEntry.getValue();
  // ...
}

Il codice tipico per l'iterazione su una mappa è:

Map<String,Thing> map = ...;
for (Map.Entry<String,Thing> entry : map.entrySet()) {
    String key = entry.getKey();
    Thing thing = entry.getValue();
    ...
}

HashMap è l'implementazione canonica della mappa e non fornisce garanzie (o anche se non dovrebbe cambiare ordine se non vengono eseguite operazioni di mutazione su di essa). SortedMap restituirà le voci in base all'ordine naturale delle chiavi, oppure a Comparator, se previsto. LinkedHashMap restituirà le voci nell'ordine di inserimento o nell'ordine di accesso a seconda di come è stato costruito. EnumMap restituisce le voci nell'ordine naturale delle chiavi.

(Aggiornamento:Penso che questo non sia più vero.) Nota, IdentityHashMap entrySet iterator ha attualmente un'implementazione particolare che restituisce lo stesso Map.Entry istanza per ogni elemento nel file entrySet!Tuttavia, ogni volta che viene aggiunto un nuovo l'iteratore fa avanzare il file Map.Entry è aggiornato.

Esempio di utilizzo di iteratore e generici:

Iterator<Map.Entry<String, String>> entries = myMap.entrySet().iterator();
while (entries.hasNext()) {
  Map.Entry<String, String> entry = entries.next();
  String key = entry.getKey();
  String value = entry.getValue();
  // ...
}

Questa è una domanda in due parti:

Come scorrere le voci di una mappa - @ScArcher2 ha rispose quello perfettamente.

Qual è l'ordine di iterazione - se stai solo usando Map, quindi in senso stretto, ci sono nessuna garanzia sull'ordine.Quindi non dovresti davvero fare affidamento sull'ordine dato da qualsiasi implementazione.comunque, il SortedMap l'interfaccia si estende Map e fornisce esattamente ciò che stai cercando: le implementazioni forniranno sempre un ordinamento coerente.

NavigableMap è un'altra estensione utile - questo è un SortedMap con metodi aggiuntivi per trovare le voci in base alla loro posizione ordinata nel set di chiavi.Quindi potenzialmente questo può eliminare la necessità di ripetere in primo luogo: potresti essere in grado di trovare lo specifico entry stai dopo aver usato il higherEntry, lowerEntry, ceilingEntry, O floorEntry metodi.IL descendingMap Il metodo ti fornisce anche un metodo esplicito di invertendo l'ordine di attraversamento.

Esistono diversi modi per eseguire l'iterazione sulla mappa.

Ecco un confronto delle loro prestazioni per un set di dati comune archiviato nella mappa memorizzando un milione di coppie di valori chiave nella mappa e ripetendo sulla mappa.

1) Utilizzo entrySet() per ogni ciclo

for (Map.Entry<String,Integer> entry : testMap.entrySet()) {
    entry.getKey();
    entry.getValue();
}

50 millisecondi

2) Utilizzo keySet() per ogni ciclo

for (String key : testMap.keySet()) {
    testMap.get(key);
}

76 millisecondi

3) Utilizzo entrySet() e iteratore

Iterator<Map.Entry<String,Integer>> itr1 = testMap.entrySet().iterator();
while(itr1.hasNext()) {
    Map.Entry<String,Integer> entry = itr1.next();
    entry.getKey();
    entry.getValue();
}

50 millisecondi

4) Utilizzo keySet() e iteratore

Iterator itr2 = testMap.keySet().iterator();
while(itr2.hasNext()) {
    String key = itr2.next();
    testMap.get(key);
}

75 millisecondi

Ho fatto riferimento this link.

Il modo corretto per farlo è utilizzare la risposta accettata poiché è la più efficiente.Trovo che il seguente codice sembri un po' più pulito.

for (String key: map.keySet()) {
   System.out.println(key + "/" + map.get(key));
}

Per tua informazione, puoi anche usare map.keySet() E map.values() se sei interessato solo alle chiavi/valori della mappa e non all'altro.

Con Collezioni di Eclissi (precedentemente Collezioni GS), utilizzeresti il ​​metodo forEachKeyValue su MapIterable interfaccia, che viene ereditata dalle interfacce MutableMap e ImmutableMap e dalle loro implementazioni.

final MutableBag<String> result = Bags.mutable.empty();
MutableMap<Integer, String> map = Maps.mutable.of(1, "One", 2, "Two", 3, "Three");
map.forEachKeyValue(new Procedure2<Integer, String>()
{
    public void value(Integer key, String value)
    {
        result.add(key + value);
    }
});
Assert.assertEquals(Bags.mutable.of("1One", "2Two", "3Three"), result);

Con la sintassi lambda Java 8, puoi scrivere il codice come segue:

MutableBag<String> result = Bags.mutable.empty();
MutableMap<Integer, String> map = Maps.mutable.of(1, "One", 2, "Two", 3, "Three");
map.forEachKeyValue((key, value) -> result.add(key + value));
Assert.assertEquals(Bags.mutable.of("1One", "2Two", "3Three"), result);

Nota: Sono un committente per le raccolte Eclipse.

In teoria, il modo più efficiente dipenderà dall'implementazione di Map.Il modo ufficiale per farlo è chiamare map.entrySet(), che restituisce un insieme di Map.Entry, ognuno dei quali contiene una chiave e un valore (entry.getKey() E entry.getValue()).

In un'implementazione peculiare, potrebbe fare qualche differenza se si utilizza map.keySet(), map.entrySet() o qualcos'altro.Ma non riesco a pensare a una ragione per cui qualcuno dovrebbe scriverlo in quel modo.Molto probabilmente non fa alcuna differenza in termini di prestazioni ciò che fai.

E sì, l'ordine dipenderà dall'implementazione, così come (possibilmente) dall'ordine di inserimento e da altri fattori difficili da controllare.

[modifica] Ho scritto valueSet() originariamente ma ovviamente entrySet() è in realtà la risposta.

Giava8:

Puoi utilizzare le espressioni lambda:

myMap.entrySet().stream().forEach((entry) -> {
    Object currentKey = entry.getKey();
    Object currentValue = entry.getValue();
});

Per ulteriori informazioni, seguire Questo.

Prova questo con Java 1.4:

for( Iterator entries = myMap.entrySet().iterator(); entries.hasNext();){

  Entry entry = (Entry) entries.next();

  System.out.println(entry.getKey() + "/" + entry.getValue());

  //...
}

Con Giava8

map.forEach((k, v) -> System.out.println((k + ":" + v)));

Giava8

Abbiamo forEach metodo che accetta a espressione lambda.Abbiamo anche ottenuto flusso API.Considera una mappa:

Map<String,String> sample = new HashMap<>();
sample.put("A","Apple");
sample.put("B", "Ball");

Itera sulle chiavi:

sample.keySet().forEach((k) -> System.out.println(k));

Itera sui valori:

sample.values().forEach((v) -> System.out.println(v));

Iterazione sulle voci (utilizzando forEach e Streams):

sample.forEach((k,v) -> System.out.println(k + ":" + v)); 
sample.entrySet().stream().forEach((entry) -> {
            Object currentKey = entry.getKey();
            Object currentValue = entry.getValue();
            System.out.println(currentKey + ":" + currentValue);
        });

Il vantaggio con i flussi è che possono essere parallelizzati facilmente nel caso lo desideriamo.Dobbiamo semplicemente usare parallelStream() al posto di stream() Sopra.

forEachOrdered contro forEach con flussi?IL forEach non segue l'ordine dell'incontro (se definito) ed è intrinsecamente di natura non deterministica dove come forEachOrdered fa.COSÌ forEach non garantisce che l'ordine venga mantenuto.Controlla anche Questo per più.

Lambda Espressione Java8

In Java 1.8 (Java 8) questo è diventato molto più semplice utilizzando per ciascuno metodo da Operazioni aggregate(Operazioni di flusso) che sembra simile agli iteratori di Iterabile Interfaccia.

Basta copiare e incollare l'istruzione seguente nel codice e rinominarlo HashMap variabile da ehm alla variabile HashMap per stampare la coppia chiave-valore.

HashMap<Integer,Integer> hm = new HashMap<Integer, Integer>();
/*
 *     Logic to put the Key,Value pair in your HashMap hm
 */

// Print the key value pair in one line.

hm.forEach((k, v) -> System.out.println("key: " + k + " value:" + v));

// Just copy and paste above line to your code.

Di seguito è riportato il codice di esempio che ho provato a utilizzare Espressione Lambda.Questa roba è così bella.Bisogna provare.

HashMap<Integer, Integer> hm = new HashMap<Integer, Integer>();
    Random rand = new Random(47);
    int i = 0;
    while(i < 5) {
        i++;
        int key = rand.nextInt(20);
        int value = rand.nextInt(50);
        System.out.println("Inserting key: " + key + " Value: " + value);
        Integer imap = hm.put(key, value);
        if( imap == null) {
            System.out.println("Inserted");
        } else {
            System.out.println("Replaced with " + imap);
        }               
    }

    hm.forEach((k, v) -> System.out.println("key: " + k + " value:" + v));

Output:

Inserting key: 18 Value: 5
Inserted
Inserting key: 13 Value: 11
Inserted
Inserting key: 1 Value: 29
Inserted
Inserting key: 8 Value: 0
Inserted
Inserting key: 2 Value: 7
Inserted
key: 1 value:29
key: 18 value:5
key: 2 value:7
key: 8 value:0
key: 13 value:11

Inoltre si può usare Spliteratore per lo stesso.

Spliterator sit = hm.entrySet().spliterator();

AGGIORNAMENTO


Inclusi collegamenti alla documentazione a Oracle Docs.Per saperne di più Lambda vai a questo collegamento e deve leggere Operazioni aggregate e per Spliterator vai a questo collegamento.

Nella mappa è possibile eseguire l'iterazione keys e/o values e/o both (e.g., entrySet) dipende dall'interesse di uno_ Tipo:

1.) Scorrere il file keys -> keySet() della mappa:

Map<String, Object> map = ...;

for (String key : map.keySet()) {
    //your Business logic...
}

2.) Scorrere il file values -> values() della mappa:

for (Object value : map.values()) {
    //your Business logic...
}

3.) Scorrere il file both -> entrySet() della mappa:

for (Map.Entry<String, Object> entry : map.entrySet()) {
    String key = entry.getKey();
    Object value = entry.getValue();
    //your Business logic...
}

Inoltre, ci sono 3 modi diversi per scorrere una HashMap.Sono come sotto_

//1.
for (Map.Entry entry : hm.entrySet()) {
    System.out.print("key,val: ");
    System.out.println(entry.getKey() + "," + entry.getValue());
}

//2.
Iterator iter = hm.keySet().iterator();
while(iter.hasNext()) {
    Integer key = (Integer)iter.next();
    String val = (String)hm.get(key);
    System.out.println("key,val: " + key + "," + val);
}

//3.
Iterator it = hm.entrySet().iterator();
while (it.hasNext()) {
    Map.Entry entry = (Map.Entry) it.next();
    Integer key = (Integer)entry.getKey();
    String val = (String)entry.getValue();
    System.out.println("key,val: " + key + "," + val);
}

Più compatto con Java 8:

map.entrySet().forEach(System.out::println);
public class abcd{
    public static void main(String[] args)
    {
       Map<Integer, String> testMap = new HashMap<Integer, String>();
        testMap.put(10, "a");
        testMap.put(20, "b");
        testMap.put(30, "c");
        testMap.put(40, "d");
        for (Integer key:testMap.keySet()) {
            String value=testMap.get(key);
            System.out.println(value);
        }
    }
}

O

public class abcd {
    public static void main(String[] args)
    {
       Map<Integer, String> testMap = new HashMap<Integer, String>();
        testMap.put(10, "a");
        testMap.put(20, "b");
        testMap.put(30, "c");
        testMap.put(40, "d");
        for (Entry<Integer, String> entry : testMap.entrySet()) {
            Integer key=entry.getKey();
            String value=entry.getValue();
        }
    }
}

Se disponi di una mappa generica non digitata puoi utilizzare:

Map map = new HashMap();
for (Map.Entry entry : ((Set<Map.Entry>) map.entrySet())) {
    System.out.println(entry.getKey() + "/" + entry.getValue());
}
    Iterator iterator = map.entrySet().iterator();
    while (iterator.hasNext()) {
        Map.Entry element = (Map.Entry)it.next();
        LOGGER.debug("Key: " + element.getKey());
        LOGGER.debug("value: " + element.getValue());    
    }

Puoi farlo usando i generici:

Map<Integer, Integer> map = new HashMap<Integer, Integer>();
Iterator<Map.Entry<Integer, Integer>> entries = map.entrySet().iterator();
while (entries.hasNext()) {
    Map.Entry<Integer, Integer> entry = entries.next();
    System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue());
}

Usa Java 8:

map.entrySet().forEach(entry -> System.out.println(entry.getValue()));
           //Functional Oprations
            Map<String, String> mapString = new HashMap<>();
            mapString.entrySet().stream().map((entry) -> {
                String mapKey = entry.getKey();
                return entry;
            }).forEach((entry) -> {
                String mapValue = entry.getValue();
            });

            //Intrator
            Map<String, String> mapString = new HashMap<>();
            for (Iterator<Map.Entry<String, String>> it = mapString.entrySet().iterator(); it.hasNext();) {
                Map.Entry<String, String> entry = it.next();
                String mapKey = entry.getKey();
                String mapValue = entry.getValue();
            }

            //Simple for loop
            Map<String, String> mapString = new HashMap<>();
            for (Map.Entry<String, String> entry : mapString.entrySet()) {
                String mapKey = entry.getKey();
                String mapValue = entry.getValue();

            }

L'ordinamento dipenderà sempre dall'implementazione specifica della mappa.Utilizzando Java 8 puoi utilizzare uno di questi:

map.forEach((k,v) -> { System.out.println(k + ":" + v); });

O:

map.entrySet().forEach((e) -> {
            System.out.println(e.getKey() + " : " + e.getValue());
        });

Il risultato sarà lo stesso (stesso ordine).L'entrySet supportato dalla mappa in modo da ottenere lo stesso ordine.Il secondo è utile in quanto consente di utilizzare lambda, ad es.se vuoi stampare solo gli oggetti interi maggiori di 5:

map.entrySet()
    .stream()
    .filter(e-> e.getValue() > 5)
    .forEach(System.out::println);

Il codice seguente mostra l'iterazione tramite LinkedHashMap e HashMap normale (esempio).Vedrai la differenza nell'ordine:

public class HMIteration {


    public static void main(String[] args) {
        Map<Object, Object> linkedHashMap = new LinkedHashMap<>();
        Map<Object, Object> hashMap = new HashMap<>();

        for (int i=10; i>=0; i--) {
            linkedHashMap.put(i, i);
            hashMap.put(i, i);
        }

        System.out.println("LinkedHashMap (1): ");
        linkedHashMap.forEach((k,v) -> { System.out.print(k + " (#="+k.hashCode() + "):" + v + ", "); });

        System.out.println("\nLinkedHashMap (2): ");

        linkedHashMap.entrySet().forEach((e) -> {
            System.out.print(e.getKey() + " : " + e.getValue() + ", ");
        });


        System.out.println("\n\nHashMap (1): ");
        hashMap.forEach((k,v) -> { System.out.print(k + " (#:"+k.hashCode() + "):" + v + ", "); });

        System.out.println("\nHashMap (2): ");

        hashMap.entrySet().forEach((e) -> {
            System.out.print(e.getKey() + " : " + e.getValue() + ", ");
        });
    }
}

LinkedHashMap (1):

10 (#=10):10, 9 (#=9):9, 8 (#=8):8, 7 (#=7):7, 6 (#=6):6, 5 (#=5):5, 4 (#=4):4, 3 (#=3):3, 2 (#=2):2, 1 (#=1):1, 0 (#=0):0,

LinkedHashMap (2):

10 : 10, 9 : 9, 8 : 8, 7 : 7, 6 : 6, 5 : 5, 4 : 4, 3 : 3, 2 : 2, 1 : 1, 0 : 0,

Mappa hash (1):

0 (#:0):0, 1 (#:1):1, 2 (#:2):2, 3 (#:3):3, 4 (#:4):4, 5 (#:5):5, 6 (#:6):6, 7 (#:7):7, 8 (#:8):8, 9 (#:9):9, 10 (#:10):10,

Mappa hash (2):

0 : 0, 1 : 1, 2 : 2, 3 : 3, 4 : 4, 5 : 5, 6 : 6, 7 : 7, 8 : 8, 9 : 9, 10 : 10,

Una soluzione iterativa efficace su una mappa è un ciclo "per ciascuno" da Java 5 a Java 7.Ecco qui:

for (String key : phnMap.keySet()) {
    System.out.println("Key: " + key + " Value: " + phnMap.get(key));
}

Da Java 8 è possibile utilizzare un'espressione lambda per eseguire l'iterazione su una mappa.È un "forEach" migliorato

phnMap.forEach((k,v) -> System.out.println("Key: " + k + " Value: " + v));

Se vuoi scrivere un condizionale per lambda puoi scriverlo in questo modo:

phnMap.forEach((k,v)->{
    System.out.println("Key: " + k + " Value: " + v);
    if("abc".equals(k)){
        System.out.println("Hello abc");
    }
});

Sì, come molte persone concordano, questo è il modo migliore per ripetere un file Map.

Ma ci sono possibilità di lanciare nullpointerexception se la mappa lo è null.Non dimenticare di mettere null .registrare.

                                                 |
                                                 |
                                         - - - -
                                       |
                                       |
for (Map.Entry<String, Object> entry : map.entrySet()) {
    String key = entry.getKey();
    Object value = entry.getValue();
}
package com.test;

import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;

public class Test {

    public static void main(String[] args) {
        Map<String, String> map = new HashMap<String, String>();
        map.put("ram", "ayodhya");
        map.put("krishan", "mathura");
        map.put("shiv", "kailash");

        System.out.println("********* Keys *********");
        Set<String> keys = map.keySet();
        for (String key : keys) {
            System.out.println(key);
        }

        System.out.println("********* Values *********");
        Collection<String> values = map.values();
        for (String value : values) {
            System.out.println(value);
        }

        System.out.println("***** Keys and Values (Using for each loop) *****");
        for (Map.Entry<String, String> entry : map.entrySet()) {
            System.out.println("Key: " + entry.getKey() + "\t Value: "
                    + entry.getValue());
        }

        System.out.println("***** Keys and Values (Using while loop) *****");
        Iterator<Entry<String, String>> entries = map.entrySet().iterator();
        while (entries.hasNext()) {
            Map.Entry<String, String> entry = (Map.Entry<String, String>) entries
                    .next();
            System.out.println("Key: " + entry.getKey() + "\t Value: "
                    + entry.getValue());
        }

        System.out
                .println("** Keys and Values (Using java 8 using lambdas )***");
        map.forEach((k, v) -> System.out
                .println("Key: " + k + "\t value: " + v));
    }
}

Ci sono molti modi per farlo.Di seguito sono riportati alcuni semplici passaggi:

Supponiamo di avere una mappa come:

Map<String, Integer> m = new HashMap<String, Integer>();

Quindi puoi fare qualcosa come quello seguente per scorrere gli elementi della mappa.

// ********** Using an iterator ****************
Iterator<Entry<String, Integer>> me = m.entrySet().iterator();
while(me.hasNext()){
    Entry<String, Integer> pair = me.next();
    System.out.println(pair.getKey() + ":" + pair.getValue());
}

// *********** Using foreach ************************
for(Entry<String, Integer> me : m.entrySet()){
    System.out.println(me.getKey() + " : " + me.getValue());
}

// *********** Using keySet *****************************
for(String s : m.keySet()){
    System.out.println(s + " : " + m.get(s));
}

// *********** Using keySet and iterator *****************
Iterator<String> me = m.keySet().iterator();
while(me.hasNext()){
    String key = me.next();
    System.out.println(key + " : " + m.get(key));
}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top