...
Code Block | ||
---|---|---|
| ||
Thread thread = new Thread(new Runnable() { public void run() { // ... } }); // Invoking thread.run() is bad; the programmer probably meant thread.start() ((Runnable) tthread).run(); // (Admissible) Warning: This does not start a new thread |
...