domingo, 14 de maio de 2017

SortedMap - ordenando chaves e valores

Quando queremos manter as chaves e seus valores ordenados,
utilizamos a classe SortedMap, invocada pela interface Map.
mas não se preocupe quanto a isto que é tão simples,
te mostro agora mesmo como usar SortedMap para manter
as chaves e seus valores bem ordenados.

Veja abaixo uma imagem do programa em execução:


 Veja abaixo o código do programa:


import java.util.SortedMap;
import java.util.TreeMap;

public class PROJETO {

     public static void main ( String [ ] args ) {
         J jht = new J ( );
         jht.textbackground ( jht.WHITE );
         jht.Moldura ( ( short ) 1, ( short ) 24, ( short ) 2, ( short ) 68 );
         jht.title ( " " );
         int i;
         SortedMap < Integer, String  > frutas = new TreeMap < > ( );
         frutas.put ( 5, "Figo" );
         frutas.put ( 2, "Banana" );
         frutas.put ( 4, "Damasco" );
         frutas.put ( 3, "Caqui" );
         frutas.put ( 1, "Amora" );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 21, ( short ) 2 );
         System.out.printf ( "SORTEDMAP - ORDENANDO VALORES" );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 16, ( short ) 4 );
         System.out.printf ( "Os valores e suas chaves foram ordenados" );
         //Imprimindo todos os valores nas chaves associadas
         //já bem ordenados por SortedMap
         for ( i = 1; i < 6; i++ ) {
              jht.gotoxy ( ( short ) 24, ( short ) i + 5 );
              jht.textcolor ( jht.LIGHTRED );
              System.out.print ( " " );
              System.out.printf ( "%d => ", i );
              jht.textcolor ( jht.BLACK );
              System.out.print (  frutas.get ( i ) );
         }
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 14, ( short ) 12 );
         System.out.printf ( "Abaixo recuperando o valor da chave 3" );
         jht.textcolor ( jht.BLACK );
         jht.gotoxy ( ( short ) 24, ( short ) 14 );
         // resgatando o armazenamento da chave 3
         System.out.println ( frutas.get ( 3 ) );
         //////////////////////////////////////////////////////
         jht.textbackground ( jht.WHITE );
         jht.Sleep ( ( short ) 1800 );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 23, ( short ) 19 );
         System.out.printf ( "Por: " );
         jht.textcolor ( jht.LIGHTBLUE );
         System.out.printf ( "Samuel Lima" );
         jht.textcolor ( jht.BLACK );
         jht.gotoxy ( ( short ) 23, ( short ) 20 );
         System.out.printf ( "sa_sp10@hotmail.com" );
         jht.Sleep ( ( short ) 1800 );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 29, ( short ) 22 );
         System.out.printf ( "MUITO OBRIGADO" );
         jht.getche ( );
     }
}

Nenhum comentário:

Postar um comentário

Observação: somente um membro deste blog pode postar um comentário.