12.07.2015 Views

k19-k11-orientacao-a.. - Departamento de Sistemas e Computação

k19-k11-orientacao-a.. - Departamento de Sistemas e Computação

k19-k11-orientacao-a.. - Departamento de Sistemas e Computação

SHOW MORE
SHOW LESS
  • No tags were found...

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

COLLECTIONS 1601516 tempo = TestaContains . foreach ( linkedList );17 System . out . println (" Foreach : " + tempo + "ms");1819 }2021 public static long forTradicional (List < Integer > lista ) {22 long inicio = System . currentTimeMillis ();2324 for ( int i = 0; i < lista . size (); i ++) {25 int x = lista . get (i);26 }2728 long fim = System . currentTimeMillis ();2930 return fim - inicio ;31 }3233 public static long foreach (List < Integer > lista ) {34 long inicio = System . currentTimeMillis ();3536 for ( int x : lista ) {3738 }3940 long fim = System . currentTimeMillis ();4142 return fim - inicio ;43 }44 }Código Java 18.25: TestaContains.java160 www.<strong>k19</strong>.com.br

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!