LoginSignup
0
0

More than 5 years have passed since last update.

Javaで並列実行

Last updated at Posted at 2017-12-08
public void doParallel(Runnable... runnables) {
    List<Thread> threads = new ArrayList<>();
    Arrays.asList(runnables).forEach(runnable -> threads.add(new Thread(runnable)));
    threads.forEach(thread -> thread.start());
    threads.forEach(thread -> { try { thread.join(); } catch (InterruptedException e) {}});
}
doParallel(
    () -> doSomething(),
    () -> doSomething(),
    () -> doSomething()
);
0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0