La méthode Factory est un type spécial de méthode statique qui peut être utilisée pour créer des instances de collection immuables. Cela signifie que nous pouvons utiliser ces méthodes pour créer des listes, sets et maps contenant un petit nombre d'éléments.
List.of() est une méthode d'usine statique qui fournit un moyen pratique de créer des listesimmuables. Syntaxe
<strong>List.of(elements...)</strong>
import java.util.List; public class ListTest { public static void main(String[] args) { <strong>List<String></strong> list =<strong> List.of</strong>("item 1", "item 2", "item 3", "item 4", "item 5"); for(String l : list) { System.out.println(l); } } }
<strong>item 1 item 2 item 3 item 4 item 5</strong>
Méthode Set.of()
Set.of()est une méthode d'usine statique qui fournit un moyen pratique de créer pas les modifiés collection. Syntaxe
<strong>Set.of(elements...) </strong>
import java.util.Set; public class SetTest { public static void main(String[] args) { <strong>Set<String></strong> set = <strong>Set.of</strong>("Item 1", "Item 2", "Item 3", "Item 4", "Item 5"); for(String s : set) { System.out.println(s); } } }
<strong>Item 5 Item 1 Item 2 Item 3 Item 4</strong>
Map.of() et Map.ofEntries()
etMap.ofEntries() est statique Les méthodes d'usine offrent un moyen pratique de créer des cartes immuables. Syntaxe<strong>Map.of(k1, v1, k2, v2)
Map.ofEntries(entry(k1, v1), entry(k2, v2),...)</strong>
import java.util.Map; public class MapTest { public static void main(String[] args) { <strong>Map<Integer, String></strong> map = <strong>Map.of</strong>(101, "Raja", 102, "Adithya", 103, "Jai"); for(<strong>Map.Entry<Integer, String></strong> m : map.<strong>entrySet()</strong>) { System.out.println(m.getKey() + " " + m.getValue()); } } }
<strong>103 Jai 102 Adithya 101 Raja</strong>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!