domingo, 7 de maio de 2017

ArrayList - convertendo em array de floats

Apesar do arrayList ser sem dúvidas
muito melhor do que um array simples,
pode acontecer de você futuro programador java
precisar convertê-lo em um array de floats.
Neste exemplo lhe mostro como isto pode ser feito,
onde na verdade iremos copiá-lo num array de floats
manualmente, isto se torna fácil quando aplicamos
um laço de repetição for para percorrer cada
elemento do ArrayList que é separado pelo método get
e em seguida copiando no array de floats
através do método Float.valueOf.

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


Veja abaixo o código do programa:



import java.util.ArrayList;
import java.util.Arrays;

public class PROJETO {
     public static int  tam  = 10;
     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;
         float [ ] vet = new float [ tam ];
         ArrayList < String > arrList = new ArrayList <> ( Arrays.asList (
                   "18.1", "22.2", "35.3", "47.4", "59.5",
                   "63.6", "70.7", "85.8", "94.9", "26.0" ) );
         for ( i = 0; i < arrList.size ( ); i++ ) {
              vet [ i ] = Float.valueOf ( arrList.get ( i ) );
         }
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 15, ( short ) 3 );
         System.out.printf ( "ARRAYLIST - CONVERTENDO EM ARRAY DE FLOATS" );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 15, ( short ) 5 );
         System.out.printf ( "Abaixo a impressão normal do ArrayList" );
         jht.textcolor ( jht.BLACK );
         //////////////////////////////////////////////////////
         jht.gotoxy ( ( int ) 23, ( int ) 7 );
         for ( i = 0; i < vet.length; i++ ) {
              if ( i == 0 )
                   jht.gotoxy ( ( int ) 23, ( int ) 7 );
              if ( i == 5 )
                   jht.gotoxy ( ( int ) 23, ( int ) 8 );
              System.out.printf ( arrList.get ( i ) + " " );
         }
         //////////////////////////////////////////////////////
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 15, ( short ) 10 );
         System.out.printf ( "ArrayList convertido para array de floats" );
         jht.textcolor ( jht.LIGHTMAGENTA );
         jht.gotoxy ( ( int ) 22, ( int ) 12 );
         for ( i = 0; i < vet.length; i++ ) {
              if ( i == 0 )
                   jht.gotoxy ( ( int ) 22, ( int ) 12 );
              if ( i == 5 )
                   jht.gotoxy ( ( int ) 22, ( int ) 13 );
              System.out.printf ( " %.1f", vet [ i ] );
         }
         //////////////////////////////////////////////////////
         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.