Skip to content

Instantly share code, notes, and snippets.

@rokon12
Created March 26, 2017 15:30
Show Gist options
  • Save rokon12/c2c975487e95dc6b7aaf89c2df716f2a to your computer and use it in GitHub Desktop.
Save rokon12/c2c975487e95dc6b7aaf89c2df716f2a to your computer and use it in GitHub Desktop.
public class MainThreadDemo {
public static void main(String[] args) {
Thread thread = Thread.currentThread();
System.out.println("Current Thread: " + thread.getName());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment