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 Integer.
Neste exemplo lhe mostro como isto pode ser feito,
onde na verdade iremos copiá-lo num array de Integer
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 Integer
através do método Integer.valueOf.
Veja abaixo uma imagem do programa em execução:
Veja abaixo o código do programa:
muito melhor do que um array simples,
pode acontecer de você futuro programador java
precisar convertê-lo em um array de Integer.
Neste exemplo lhe mostro como isto pode ser feito,
onde na verdade iremos copiá-lo num array de Integer
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 Integer
através do método Integer.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;
Integer [ ] vet = new Integer [ tam ];
ArrayList < String > arrList = new ArrayList <> ( Arrays.asList (
"18", "22", "35", "47", "59",
"63", "70", "85", "94", "100" ) );
for ( i = 0; i < arrList.size ( ); i++ ) {
vet [ i ] = Integer.valueOf ( arrList.get ( i ) );
}
jht.textcolor ( jht.LIGHTRED );
jht.gotoxy ( ( short ) 15, ( short ) 3 );
System.out.printf ( "ARRAYLIST -
CONVERTENDO EM ARRAY INTEGER" );
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 integer" );
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.print ( 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.