Skip to content

Instantly share code, notes, and snippets.

@phoenix24
Created December 22, 2018 08:44
Show Gist options
  • Select an option

  • Save phoenix24/cc935da57c513c290479a7970197e9f7 to your computer and use it in GitHub Desktop.

Select an option

Save phoenix24/cc935da57c513c290479a7970197e9f7 to your computer and use it in GitHub Desktop.
thread playground - tell me the output.
public class SP10 {
public static void main(String[] args) {
Thread t = new Thread();
t.start();
t.start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment