Otimização de Código em Java
Pavlos Kosmetatos
Lead Engineer @Wealthyhood
Como?
Single-threading é como uma pista única onde os carros vão em fila. Multi-threading é como várias pistas com carros andando ao mesmo tempo!
Thread permite criar novos fluxos de execuçãoThread pode executar de forma independenteRunnable task = () -> {
System.out.println("Processing on thread: " +
Thread.currentThread().getName());
};
Thread thread = new Thread(task);
thread.start();
Processing on thread: Thread-0
List<Thread> threads = new ArrayList<Thread>();
for (int i = 0; i < 4; i++) {
Thread thread = new Thread(() -> System.out.println("Processing data on Thread-" + i));
threads.add(thread);
thread.start();
}
for (Thread t : threads) {
t.join(); // Waits for all threads to complete
}
// Processing data on Thread-0
// Processing data on Thread-2
// Processing data on Thread-1
// Processing data on Thread-3
collection.parallelStream()Stream.of(...).parallel()// Processamento sequencial List<Integer> result1 = new ArrayList<>(); for (int i = 0; i < numbers.size(); i++) { result1.add(numbers.get(i) * 2); }// Processamento sequencial com stream List<Integer> result2 = numbers.stream() .map(n -> n * 2) .collect(Collectors.toList());// Processamento paralelo com parallel stream List<Integer> result3 = numbers.parallelStream() .map(n -> n * 2) .collect(Collectors.toList());
Thread para criar caminhos de execução paralelosOtimização de Código em Java