No último post mostramos como inicializar um ArrayList de caracteres,
o que não é muito fácil de se encontrar exemplos assim,
e ainda prometi que faríamos algumas conversões e que era esta
a nossa ideia, como promessa pra mim é dívida,
Apresento aqui uma conversão de ArrayList de char em
array de caracteres.
Veja abaixo uma imagem do programa em execução:
Veja abaixo o código do programa:
o que não é muito fácil de se encontrar exemplos assim,
e ainda prometi que faríamos algumas conversões e que era esta
a nossa ideia, como promessa pra mim é dívida,
Apresento aqui uma conversão de ArrayList de char em
array de caracteres.
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 void main ( String args [ ] ) {
int i, j;
boolean pos = false;
J jht = new J ( );
jht.title ( " " );
jht.textbackground ( jht.WHITE );
jht.Moldura ( ( short ) 1, ( short ) 24, ( short ) 2, ( short ) 68 );
ArrayList < Character > arrList = new ArrayList <> ( Arrays.asList (
'A','B','C','D','E',
'F','G','H','I','J',
'L','M','N','O','P',
'Q','R','S','T','U',
'V','X','Z','Y','K' ) );
jht.textcolor ( jht.LIGHTRED );
jht.gotoxy ( ( short ) 15, ( short ) 2 );
System.out.print ( "ARRAYLIST -
CONVERTENDO EM ARRAY DE CHAR" );
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( short ) 18, ( short ) 4 );
System.out.print ( "Abaixo o
ArrayList de char imprimido" );
jht.textcolor ( jht.BLACK );
// ////////////////////////////////////////////////////
jht.gotoxy ( ( int ) 18, ( int ) 6 );
for ( i = 0; i < arrList.size ( ); i++ ) {
if ( i == 0 )
jht.gotoxy ( ( int ) 28, ( int ) 6 );
if ( i == 5 )
jht.gotoxy ( ( int ) 28, ( int ) 7 );
if ( i == 10 )
jht.gotoxy ( ( int ) 28, ( int ) 8 );
if ( i == 15 )
jht.gotoxy ( ( int ) 28, ( int ) 9 );
if ( i == 20 )
jht.gotoxy ( ( int ) 28, ( int ) 10 );
System.out.print ( " " );
System.out.print ( arrList.get ( i ) );
}
//
////////////////////////////////////////////////////
//convertendo um ArrayList de caracteres para
um array de caracteres
char [ ] alfabeto = new char [ arrList.size ( ) ];
for ( i = 0; i < arrList.size ( ); i++) {
alfabeto [ i ] = arrList.get ( i );
}
//
////////////////////////////////////////////////////
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( short ) 18, ( short ) 12 );
System.out.print ( "Abaixo o
Array de char imprimido" );
jht.textcolor ( jht.LIGHTMAGENTA );
//
////////////////////////////////////////////////////
jht.gotoxy ( ( int ) 18, ( int ) 14 );
for ( i = 0; i < alfabeto.length; i++ ) {
if ( i == 0 )
jht.gotoxy ( ( int ) 28, ( int ) 14 );
if ( i == 5 )
jht.gotoxy ( ( int ) 28, ( int ) 15 );
if ( i == 10 )
jht.gotoxy ( ( int ) 28, ( int ) 16 );
if ( i == 15 )
jht.gotoxy ( ( int ) 28, ( int ) 17 );
if ( i == 20 )
jht.gotoxy ( ( int ) 28, ( int ) 18 );
System.out.print ( " " );
System.out.print ( alfabeto [ i ] );
}
//
////////////////////////////////////////////
jht.textbackground ( jht.WHITE );
jht.Sleep ( ( short ) 1800 );
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( short ) 23, ( short ) 20 );
System.out.printf ( "Por: " );
jht.textcolor ( jht.LIGHTBLUE );
System.out.printf ( "Samuel
Lima" );
jht.textcolor ( jht.BLACK );
jht.gotoxy ( ( short ) 23, ( short ) 21 );
System.out.printf ( "sa_sp10@hotmail.com" );
jht.Sleep ( ( short ) 1800 );
jht.textcolor ( jht.LIGHTRED );
jht.gotoxy ( ( short ) 29, ( short ) 23 );
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.