TrabalhosGratuitos.com - Trabalhos, Monografias, Artigos, Exames, Resumos de livros, Dissertações
Pesquisar

Coleções-Prof. Miguel Gabriel Prazeres De Carvalho

Exames: Coleções-Prof. Miguel Gabriel Prazeres De Carvalho. Pesquise 862.000+ trabalhos acadêmicos

Por:   •  2/3/2015  •  421 Palavras (2 Páginas)  •  521 Visualizações

Página 1 de 2

Rascunho da Aula de Java

Prof. Miguel Gabriel Prazeres de Carvalho

package array;

public class ImplArray {

/**

* @param args

*/

public static void main(String[] args) {

// TODO Auto-generated method stub

String [] aStr = new String[10];

aStr[0]="Carlos";

aStr[1]="Amanda";

aStr[2]="Andressa";

aStr[3]="Carlos";

aStr[4]="Ruben";

aStr[5]="Guilherme";

aStr[6]="Vivian";

aStr[7]="Lais";

aStr[8]="Maria";

aStr[9]="Joao";

aStr[10]="Roberto";// erro

for(int i=0;i<10;i++)

{

System.out.println("O nome é: " +aStr[i]);

}

//

}

}

package arraylist;

import java.util.ArrayList;

import java.util.List;

public class ImplArrayList {

public static void main(String[] args) {

// TODO Auto-generated method stub

ArrayList<String> lista = new ArrayList<String>();// List é uma

lista.add("Carlos");

lista.add("Joao");

lista.add("Maria");

lista.add("Maria");

lista.add("Maria");

lista.add("Maria");

lista.add("Maria");

lista.remove("Maria");

//lista.remove(0);

lista.set(4, "Ana");

if (lista.contains("Miguel")) {

System.out.println("Tem Miguel");

}

System.out.println(lista); // imprime a lista

String str = lista.get(0); // elemento da posição 0

System.out.println(str); // imprime Miguel

}

}

package arraylistobj;

public class Cachorro {

private int peso;

private String nome;

private String cor;

private static int quant = 0;

private int altura;

public Cachorro() {

quant += 1;

altura = 1;

}

public void setValores(int novopeso, String nome, String cor) {

this.peso = novopeso;

this.cor = cor;// cor=cor;

this.nome = nome;

}

public void setValores(int altura, int novopeso, String nome, String cor) {

this.peso = novopeso;

this.cor = cor;// cor=cor;

this.nome = nome;

this.altura = altura;

}

public int getPeso() {

return this.peso;

}

public String getNome() {

return this.nome;

}

public String getCor() {

return this.cor;

}

public static int getQuant() {

return quant;

}

}

package arraylistobj;

import java.util.ArrayList;

import java.util.Iterator;

public class ImplArrayList {

public static void main(String[] args) {

// TODO Auto-generated method stub

ArrayList<Cachorro> lista = new ArrayList<Cachorro>();// List é uma interface

Cachorro cao = new Cachorro();

cao.setValores(10, "Toto", "branco");

Cachorro cao2 = new Cachorro();

cao2.setValores(10, "Dudu", "marron");

lista.add(cao);

lista.add(cao2);

System.out.println (lista);

Cachorro caoaux = (Cachorro) lista.get (0); // elemento da posição 0

...

Baixar como (para membros premium)  txt (4.6 Kb)  
Continuar por mais 1 página »
Disponível apenas no TrabalhosGratuitos.com