Este exemplo de ArrayList que trago agora
mais parece uma concatenação.
Temos um ArrayList inicializado com uma parte
do texto e um array de string, que vem
inicializado com o restante do texto.
O segundo ArrayList é inicializado com o conteúdo
do primeiro e com o restante do texto que está
presente no Array de string.
Quer ver como isto funciona? acompanhe abaixo:
Veja abaixo uma imagem do programa em execução
Veja abaixo o código do programa:
mais parece uma concatenação.
Temos um ArrayList inicializado com uma parte
do texto e um array de string, que vem
inicializado com o restante do texto.
O segundo ArrayList é inicializado com o conteúdo
do primeiro e com o restante do texto que está
presente no Array de string.
Quer ver como isto funciona? acompanhe abaixo:
Veja abaixo uma imagem do programa em execução
Veja abaixo o código do programa:
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
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;
ArrayList < String > arrList = new ArrayList <> ( Arrays.asList (
"Há uma
diferença entre os conceitos de raça e etnia.",
"Raça é uma
construção social utilizada para destingir",
"pessoas em
termos de uma ou mais marcas físicas," ) );
jht.textcolor ( jht.LIGHTRED );
jht.gotoxy ( ( short ) 13, ( short ) 2 );
System.out.printf ( "ARRAYLIST -
COPIANDO OU CONCATENANDO CONTEÚDO" );
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( short ) 15, ( short ) 4 );
System.out.printf ( "Abaixo a
impressão normal do ArrayList 1" );
//
////////////////////////////////////////////
jht.gotoxy ( ( int ) 18, ( int ) 6 );
jht.textcolor ( jht.BLACK );
for ( i = 0; i < arrList.size ( ); i++ ) {
if ( i == 0 )
jht.gotoxy ( ( int ) 8, ( int ) 6 );
if ( i == 1 )
jht.gotoxy ( ( int ) 8, ( int ) 7 );
if ( i == 2 )
jht.gotoxy ( ( int ) 8, ( int ) 8 );
if ( i == 3 )
jht.gotoxy ( ( int ) 8, ( int ) 9 );
if ( i == 4 )
jht.gotoxy ( ( int ) 8, ( int ) 10 );
System.out.print ( " " );
System.out.printf ( arrList.get ( i ) );
}
jht.getche ( );
String [ ] texto = {
"dentre elas a
cor, que são socialmente significativas",
"Desse modo, a raça é um termo
sociológico e não biológico."};
//arrList_2 sendo inicializado com os valores
do arrList
List < String > arrList_2 = new ArrayList < > ( arrList );
//arrList_2 recebendo também os valores do
array de string
Collections.addAll ( arrList_2, texto );
//
////////////////////////////////////////////
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( short ) 16, ( short ) 10 );
System.out.printf ( "Abaixo o
ArrayList 2 totalmente concatenado" );
jht.textcolor ( jht.LIGHTMAGENTA );
for ( i = 0; i < arrList_2.size ( ); i++ ) {
if ( i == 0 )
jht.gotoxy ( ( int ) 8, ( int ) 12 );
if ( i == 1 )
jht.gotoxy ( ( int ) 8, ( int ) 13 );
if ( i == 2 )
jht.gotoxy ( ( int ) 8, ( int ) 14 );
if ( i == 3 )
jht.gotoxy ( ( int ) 8, ( int ) 15 );
if ( i == 4 )
jht.gotoxy ( ( int ) 8, ( int ) 16 );
System.out.print ( " " );
System.out.printf ( arrList_2.get ( i ) );
}
//
////////////////////////////////////////////
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.