En Java, el método keySet() de la clase TreeMap está presente dentro del paquete java.util en Java y se usa para crear un conjunto de elementos clave contenidos en el mapa de árbol. Básicamente, devuelve una vista de conjunto de las claves o podemos crear un nuevo conjunto y almacenar los elementos clave en ellos en orden ascendente. Dado que el conjunto está respaldado por el mapa, cualquier cambio realizado en el mapa se refleja en el conjunto y viceversa.
--> java.util Package --> TreeMap Class --> keySet() Method
Sintaxis:
tree_map.keySet()
Tipo de retorno: un conjunto que tiene las claves del diagrama de árbol en orden ascendente.
Ejemplo 1: asignación de valores de string a claves enteras.
Java
// Java Program to illustrate the keySet() method // of TreeMap class where we are // Mapping String Values to Integer Keys // Importing required classes import java.util.*; // Main class public class GFG { // MAin driver method public static void main(String[] args) { // Creating an empty TreeMap by // declaring object of integer, string pairs TreeMap<Integer, String> tree_map = new TreeMap<Integer, String>(); // Mapping string values to int keys // using put() method tree_map.put(10, "Geeks"); tree_map.put(15, "4"); tree_map.put(20, "Geeks"); tree_map.put(25, "Welcomes"); tree_map.put(30, "You"); // Printing the elements of above TreeMap System.out.println("Initial Mappings are: " + tree_map); // Getting the set view of keys // using keySet() method System.out.println("The set is: " + tree_map.keySet()); } }
Initial Mappings are: {10=Geeks, 15=4, 20=Geeks, 25=Welcomes, 30=You} The set is: [10, 15, 20, 25, 30]
Ejemplo 2: asignación de valores enteros a claves de string
Java
// Java Program to Illustrate keySet() Method // of TreeMap class where we are // Mapping Integer Values to String Keys // Importing required classes import java.util.*; // Main class public class GFG { // Main driver method public static void main(String[] args) { // Creating an empty TreeMap by // declaring object of string, integer pairs TreeMap<String, Integer> tree_map = new TreeMap<String, Integer>(); // Mapping int values to string keys // using put() method tree_map.put("Geeks", 10); tree_map.put("4", 15); tree_map.put("Geeks", 20); tree_map.put("Welcomes", 25); tree_map.put("You", 30); // Printing the elements of TreeMap System.out.println("Initial Mappings are: " + tree_map); // Getting the set view of keys // using keySet() method System.out.println("The set is: " + tree_map.keySet()); } }
Initial Mappings are: {4=15, Geeks=20, Welcomes=25, You=30} The set is: [4, Geeks, Welcomes, You]
Nota: Del mismo modo, la misma operación se puede realizar con cualquier tipo de Mapping con variación y combinación de diferentes tipos de datos.
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA