Skip to content

Instantly share code, notes, and snippets.

@embs
Created May 17, 2012 01:10
Show Gist options
  • Save embs/2715369 to your computer and use it in GitHub Desktop.
Save embs/2715369 to your computer and use it in GitHub Desktop.
Snippet de código java que exibe o número de processadores disponíveis na máquina
public class Main {
public static void main(String [] args) {
Runtime rt = Runtime.getRuntime();
System.out.println(rt.availableProcessors());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment