Post Made Community Wiki by Community
show/hide this revision's text 2 added 242 characters in body

In Java, calling a static method via a reference. My favourite example:

Thread t = new Thread(someRunnable);
t.start();
t.sleep(1000); // This doesn't do what it looks like...

It makes the current thread sleep, not the newly created one. Thread.sleep is a static method and only ever affects the calling thread - but this snippet makes it look likes it's telling a different thread to sleep.

show/hide this revision's text 1

In Java, calling a static method via a reference. My favourite example:

Thread t = new Thread(someRunnable);
t.start();
t.sleep(1000); // This doesn't do what it looks like...