Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
6answers
205 views

Java: for(;;) vs. while(true)

What is the difference between a standard while(true) loop and for(;;)? Is there any, or will both be mapped to the same bytecode after compiling?
3
votes
9answers
10k views

Is there a decent wait function in C++?

One of the first things I learned in C++ was that #include<iostream> int main() { std::cout<<"Hello, World!\n"; return 0; } would simply appear and disappear extremely quickly ...
2
votes
3answers
655 views

How is Smalltalk's whileTrue message implemented behind the scenes?

I am trying to teach myself Smalltalk. A tutorial has this example of a while loop: |i| i:=5. [i >0] whileTrue:[ Transcript show: ((i*2) asString) ; cr. i:=i-1. ]. As I understand it, ...
0
votes
3answers
56 views

While loop escape range

I have a while loop i wish to escape when i hit the number 1 through 5. What would be the best statement to put for that? I currently have this. while ( oneChoice!= 1 || oneChoice!= 2 || ...
0
votes
2answers
38 views

When is a while(True) loop appropriate? [closed]

Possible Duplicate: is while(true) bad programming practice? What's the point of using “while (true) {…}”? I've always considered it bad practice to use ...