Skip to content

Instantly share code, notes, and snippets.

@fado
Created March 1, 2016 14:25
Show Gist options
  • Save fado/34a67af2d0b62c990f89 to your computer and use it in GitHub Desktop.
Save fado/34a67af2d0b62c990f89 to your computer and use it in GitHub Desktop.
public static void main(String[] args) {
List<Thread> threads = new ArrayList<>();
for(int i = 0; i < 10; i++) {
Thread thread = new Thread(0) ;
thread.setName("Thread: "+ i);
threads.add(thread);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment