Skip to content

Instantly share code, notes, and snippets.

@tgrabiec
Created May 28, 2010 16:47
Show Gist options
  • Save tgrabiec/417403 to your computer and use it in GitHub Desktop.
Save tgrabiec/417403 to your computer and use it in GitHub Desktop.
class Test extends Thread {
public synchronized void run() {
}
public static void main(String[] args) {
while (true)
new Test().start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment