Tagged Questions

2
votes
3answers
131 views

To throw a Thread

I have a question. Would it be possible, hypthetically, in Java, to throw a running thread as exception? I know this is madness, but just for fun, could it be done? Something along the lines of: ...
2
votes
13answers
378 views

Will reassigning a variable in every iteration of a loop affect performance?

Consider the following two ways of writing a loop in Java to see if a list contains a given value: Style 1 boolean found = false; for(int i = 0; i < list.length && !found; i++) { ...
1
vote
3answers
409 views

Variable Assignment and loops

A while back, I was working on a program that hashed values into a hashtable (I don't remember the specifics, and the specifics themselves are irrelevant to the question at hand). Anyway, I had the ...