Tagged Questions

A while loop is a control structure that allows for looping over a set of instructions as long as a specified condition is met.

learn more… | top users | synonyms (2)

112
votes
22answers
6k views

Are “while(true)” loops so bad?

I've been programming in Java for several years now, but I just recently returned to school to get a formal degree. I was quite surprised to learn that, on my last assignment, I lost points for using ...
71
votes
8answers
10k views

How to optimize for-comprehensions and loops in Scala?

So Scala is supposed to be as fast as Java. I'm revisiting in Scala some Project Euler problems that I originally tackled in Java. Specifically Problem 5 : "What is the smallest positive number that ...
26
votes
8answers
3k views

JavaScript - Are loops really faster in reverse…?

I've heard this quite a few times. Are JavaScript loops really faster when counting backward? If so, why? I've seen a few test suite examples showing that reversed loops are quicker, but I can't find ...
26
votes
11answers
51k views

do-while loop in Python?

I need to emulate a do-while loop in a python. But, unfortunately, following straightforward code does not work: l = [ 1, 2, 3 ] i = l.__iter__() s = None while True : if s : print s try : ...
23
votes
16answers
780 views

Best Loop Idiom for special casing the last element

I run into this case a lot of times when doing simple text processing and print statements where I am looping over a collection and I want to special case the last element (for example every normal ...
22
votes
16answers
3k views

For vs. while in C programming?

There are 3 loops in C: for, while, do-while. What's the difference between them? For example, it seems nearly all while statement can be replaced by for statement, right? Then, what's the advantage ...
20
votes
24answers
2k views

do…while vs while [closed]

Possible Duplicates: While vs. Do While When should I use do-while instead of while loops? I've been programming for a while now (2 years work + 4.5 years degree + 1 year pre-college) and ...
19
votes
4answers
273 views

In Perl, why does the `while(<HANDLE>) {…}` construct not localize `$_`?

What was the design (or technical) reason for Perl not automatically localizing $_ with the following syntax: while (<HANDLE>) {...} Which gets rewritten as: while (defined( $_ = ...
19
votes
17answers
2k views

Is the code “while(condition);” valid and what does it mean?

Can we put semicolon like while(condition); in a C Programming? If while(condition); is valid, what does it mean?
18
votes
16answers
2k views

Is there any performance difference between for() and while()?

Or is it all about semantics?
16
votes
3answers
162 views

Why does an empty Java program consume memory?

I'm exploring memory usage in Java to understand why my program leaks memory. After stripping off code in my main while loop, I still get an increase of memory usage over time. Pondering the memory ...
16
votes
4answers
975 views

Else clause on Python while statement

I've noticed the following code is legal in Python. My question is why? Is there a specific reason? n = 5 while n != 0: print n n -= 1 else: print "what the..." Thanks.
15
votes
8answers
885 views

Does Java recognize infinite loops?

Given the following code sample: public class WeirdStuff { public static int doSomething() { while(true); } public static void main(String[] args) { doSomething(); } } This is a valid ...
15
votes
8answers
4k views

What's the difference between iterating over a file with foreach or while in Perl?

I have a filehandle FILE in Perl, and I want to iterate over all the lines in the file. Is there a difference between the following? while (<FILE>) { # do something } and foreach ...
15
votes
22answers
3k views

is while(true) bad programming practice?

I often use this code pattern: while(true) { //do something if(<some condition>) { break; } } Another programmer told me that this was bad practice and that I should ...
14
votes
12answers
1k views

Does the last element in a loop deserve a separate treatment?

When reviewing, I sometimes encounter this kind of loop: i = begin while ( i != end ) { // ... do stuff if ( i == end-1 (the one-but-last element) ) { ... do other stuff } ...
11
votes
3answers
379 views

What's the most defensive way to loop through lines in a file with Perl?

I usually loop through lines in a file using the following code: open my $fh, '<', $file or die "Could not open file $file for reading: $!\n"; while ( my $line = <$fh> ) { ... } However, ...
11
votes
4answers
12k views

Timer & TimerTask versus Thread + sleep in Java

I found similar questions asked here but there weren't answers to my satisfaction. So rephrasing the question again- I have a task that needs to be done on a periodic basis (say 1 minute intervals). ...
11
votes
7answers
8k views

Writing a while loop in the C preprocessor

I am asking this question from an educational/hacking point of view, (I wouldn't really want to code like this). Is it possible to implement a while loop only using C preprocessor directives. I ...
10
votes
5answers
2k views

Scala Unit type

I use opencsv to parse csv files, and my code is while( (line = reader.readNext()) != null ) { .... } I got a compiler warning saying: comparing values of types Unit and Null using `!=' will ...
10
votes
30answers
2k views

Test loops at the top or bottom? (while vs. do while)

When I was taking CS in college (mid 80's), one of the ideas that was constantly repeated was to always write loops which test at the top (while...) rather than at the bottom (do ... while) of the ...
9
votes
14answers
502 views

Declaring variables inside or outside of a loop

Why is this: String str; while(condition){ str = calculateStr(); ..... } better than this? while(condition){ String str = calculateStr(); ..... ...
9
votes
4answers
248 views

IntelliJ suggests replacing the while loop with a for each loop. Why?

ArrayList<Object> list = new ArrayList<Object>(); list.add(12); list.add("Hello"); list.add(true); list.add('c'); Iterator iterator = list.iterator(); ...
8
votes
12answers
2k views

Is using a while block to do nothing a bad thing?

I'm currently working through the excercises in 'The C Programming Language'. Here's one of my solutions: int c; while ((c=getchar()) != EOF) { if (c == ' ') { while ((c = getchar()) == ' ') ...
8
votes
3answers
2k views

Perl: while ($key = each %hash) doesn't stop at key = 0

I don't need this, obviously; I'm just curious about what's going on here. Am I missing something simple? Can I rely on this behaviour in all versions of Perl?) Perl v5.8.8: %h = ( 0=>'zero', ...
7
votes
4answers
145 views

What is the name of the implicit variable in a java while loop?

In Perl you can write something like while(!eof){ doSomething(x,y); print $_; } and the second statement prints out the iteration the loop is up to using $_, the name of the invisible ...
7
votes
2answers
316 views

Do..While…Loop

My study book makes the following statement about the code below: **"The computer evaluates the loop condition in the Do...Loop statment to determine whether the loop instructions should be ...
7
votes
2answers
324 views

Converting while to generator 3.4 times slow down

What is happening? Can somebody explain me what happens here, I changed in tight loop: ## j=i ## while j < ls - 1 and len(wordlist[j]) > lc: j+=1 j = next(j ...
7
votes
7answers
2k views

Which is faster in SQL, While loop, Recursive Stored proc, or Cursor?

Which is faster in SQL, While loop, Recursive Stored proc, or Cursor? I want to optimize the performance in a couple of spots in a stored procedure. The code I'm optimizing formats some strings for ...
7
votes
9answers
2k views

Advanced switch statement within while loop?

I just started C++ but have some prior knowledge to other languages (vb awhile back unfortunately), but have an odd predicament. I disliked using so many IF statements and wanted to use switch/cases ...
7
votes
6answers
466 views

returning out of for-loop

I'm pretty new at python and I was wondering if this: def func(self, foo): for foo in self.list: if foo.boolfunc(): return True return False is good practice. Can I return out of a ...
7
votes
5answers
1k views

While or Tail Recursion in F#, what to use when?

Ok, only just in F# and this is how I understand it now : Some problems are recursive in nature (building or reading out a treestructure to name just one) and then you use recursion. In these ...
7
votes
3answers
19k views

while loop in batch

Hello Here is what I want, inside the BACKUPDIR, I want to execute cscript /nologo c:\deletefile.vbs %BACKUPDIR% until number of files inside the folder is greater than 21(countfiles holds it). Here ...
6
votes
6answers
383 views

Counting digits using while loop

I was recently making a program which needed to check the number of digits in a number inputted by the user. As a result I made the following code: int x; cout << "Enter a number: "; cin ...
6
votes
3answers
394 views

Need Help Programming Battleship Location Selector/Checker

I am trying to develop a 1-sided Battleship game and I have nearly everything set up. I only need to incorporate an array which holds at this time, 5, Ships objects. The class I created for each ...
6
votes
1answer
123 views

Ruby Loops with Grandma

Okay, I'm trying to write a ruby simulation of my grandmother. I can't quite get the loop to work the way I'd like though. I want granny to respond with "OH, THAT REMINDS ME OF BACK IN (random ...
6
votes
4answers
251 views

Problem with “while” in Java

I'm trying out several exercises from a Java programming book. I have the code below: import java.io.*; import java.util.Scanner; public class Ex420 { public static void main( String args[] ) { ...
6
votes
6answers
606 views

Java do while, while

what behaviour can I expect when I run this code: do while(testA) { // do stuff } while(testB); Will it behave like: do { while(testA) { // do stuff } } while(testB); ...
6
votes
8answers
776 views

When implementing an infinite loop, is there a difference in using while(1) vs for(;;) vs goto (in C)?

When implementing an infinite loop, is there a difference in using while(1) vs for(;;) vs goto? Thanks, Chenz
6
votes
11answers
2k views

break out of a loop that contains a switch statement (C#)

I am having trouble figuring out how to break out of a loop that contains a switch statement. Break breaks out of the switch, not the loop. There is probably a more elegant solution to this. I have ...
6
votes
5answers
4k views

Clojure While Loop

I trying clojure i am trying to figure out how to implement the following algorithm, I am reading from an input stream i want to continue reading until it is not a delimiter character. i can do ...
6
votes
17answers
3k views

Which is better practice - for loop with break or conditional loop?

I'm just curious what peoples' thoughts are on this topic. Let's say I have an Array of Objects, and I want to loop through them to see if the Objects contain certain values, and if so, I want to stop ...
6
votes
3answers
886 views

Is there any way to do variable assignments directly inside a while(<here>) loop in Python?

Is there any way to do this in python? I.e. have the variable assignment return the assigned value and compare that to an empty string, directly in the while loop. No biggie if it isn't possible, just ...
6
votes
11answers
10k views

Java while loop and Threads!

I have a program that continually polls the database for change in value of some field. It runs in the background and currently uses a while(true) and a sleep() method to set the interval. I am ...
5
votes
3answers
90 views

Thread.sleep() in a while loop

I notice that NetBeans is warning me about using Thread.sleep() in a while loop in my Java code, so I've done some research on the subject. It seems primarily the issue is one of performance, where ...
5
votes
3answers
164 views

What happens when one places a semi-colon after a while loop's condition?

I've come across a situation like this a few times: while (true) { while (age == 5); //What does this semi-colon indicate? //Code //Code //Code } The while(true) indicates that this is an ...
5
votes
6answers
90 views

JOINS vs. while statements

In the company where I came to work, they run a PHP/MySQL relational database. I had always thought that if I needed to pull different info from different tables, that I could just do a simple join to ...
5
votes
4answers
266 views

For loop in scala without sequence?

So, while working my way through "Scala for the Impatient" I found myself wondering: Can you use a Scala for loop without a sequence? For example, there is an exercise in the book that asks you to ...
5
votes
2answers
239 views

How to implement while loop in D?

I know D already has while loop, but because of its advanced features I would like to see what it would look like if while loop was implemented in code. motivation: the accepted answer to this ...
5
votes
3answers
1k views

Bash: How to end infinite loop with any key pressed?

I need to write an infinite loop that stops when any key is pressed. Unfortunately this one loops only when a key is pressed. Ideas please? #!/bin/bash count=0 while : ; do # dummy action echo -n ...

1 2 3 4 5 25