Created
December 22, 2018 08:44
-
-
Save phoenix24/cc935da57c513c290479a7970197e9f7 to your computer and use it in GitHub Desktop.
thread playground - tell me the output.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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