Skip to content

Instantly share code, notes, and snippets.

@JohnMurray
Created March 17, 2016 00:14
Show Gist options
  • Save JohnMurray/d20777a8ff0b8c8bc6c4 to your computer and use it in GitHub Desktop.
Save JohnMurray/d20777a8ff0b8c8bc6c4 to your computer and use it in GitHub Desktop.
Silly Java Threads Question - MOAR THREADS!!!!
for (int i = 0; i < 10_000; i++) {
Thread t = new Thread(() -> System.out.println("doing something"));
t.start();
t.join();
}
// Eventually throws java.lang.OutOfMemoryError: unable to create new native thread
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment