Is it technically possible for a thread in Java to deadlock itself?
I was asked this at an interview a while back and responded that it wasn\'t possible but the inte
Maybe what the interviewer was thinking of was:
Thread.currentThread().join();
However I would argue that it does not count as a deadlock.