Skip to content

Instantly share code, notes, and snippets.

@iyengarajay
Last active July 3, 2016 09:03
Embed
What would you like to do?
Thread thread = new Thread(new Runnable()
{
@Override
public void run()
{
System.out.println("Do something In the thread...");
}
});
thread.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment