Tagged Questions
The term "infinite loop" refers to any execution instance of a loop in which the loop's exit criteria are never satisfied; such a loop would perform a potentially infinite number of iterations of the loop body. The general problem of determining whether the execution of a loop with given preconditions will result in an infinite loop is undecidable; in other words, there is no algorithm to determine whether an execution of a loop will eventually terminate.
24
votes
8answers
2k views
Endless for loop
I have the following loop:
for (byte i = 0 ; i < 128; i++) {
System.out.println(i + 1 + " " + name);
}
When I execute my programm it prints all numbers from -128 to 127 in an infinite loop. ...
19
votes
16answers
4k views
Is “for(;;)” faster than “while (TRUE)”? If not, why do people use it?
for (;;) {
//Something to be done repeatedly
}
I have seen this sort of thing used a lot, but I think it is rather strange...
Wouldn't it be much clearer to say while(true), or something along ...
18
votes
2answers
451 views
how to declare i and j to make it be an infinite loop?
while( i <= j && i >= j && i != j) {}
how to declare i and j to make it be an infinite loop ?
// it's an interview question I met.
it's asking what's the declarations of i ...
17
votes
23answers
5k views
for ( ; ; ) or while ( true ) - Which is the Correct C# Infinite Loop?
Back in my C/C++ days, coding an "infinite loop" as
while ( true )
felt more natural and seemed more obvious to me as opposed to
for ( ; ; )
An encounter with PC-lint in the late 1980's and ...
15
votes
5answers
383 views
How to handle an “infinite” IEnumerable?
A trivial example of an "infinite" IEnumerable would be
IEnumerable<int> Numbers() {
int i=0;
while(true) {
yield return unchecked(i++);
}
}
I know, that
foreach(int i in ...
14
votes
5answers
426 views
C++ - Can massive nested loops cause the linker to run endlessly when compiling in Release-Mode?
I'm compiling a very small Win32 command-line application in VS2010 Release-Mode, with all speed optimizations turned on (not memory optimizations).
This application is designed to serve a single ...
12
votes
2answers
458 views
curious about how “loop = loop” is evaluated in Haskell
I thought expressions like this would cause Haskell to evaluate forever. But the behaviors in both GHCi and the compiled program surprised me.
For example, in GHCi, these expressions blocked until I ...
11
votes
8answers
3k views
Detecting infinite loop in brainfuck program
I have written a simple brainfuck interpreter in MATLAB script language. It is fed random bf programs to execute (as part of a genetic algorithm project). The problem I face is, the program turns out ...
10
votes
5answers
724 views
AMD64 — nopw assembly instruction?
I made the following (insane) code in C:
long i = 0;
main() {
recurse();
}
recurse() {
i++;
recurse();
}
When compiled with gcc -O2, the compiler recognizes the infinite recursion and ...
10
votes
5answers
368 views
When running user inputed Javascript, is there a way to detect and stop “problem” scripts?
On a page, something like jsFiddle, that executes user inputed Javascript, is there a way to stop / disrupt "problem" scripts running in an iframe?
The major class of problem scripts would be ...
8
votes
2answers
177 views
Why Does Test Condition of “for(;;)” Succeed?
Insomuch as I understand "for(;;)" has no initial condition, no test condition and no increment condition, and therefore loops forever, I am curious why the test condition succeeds each loop.
Does ...
7
votes
6answers
224 views
Is it a sin to use infinite recursion for infinite loops in Python?
This question is more about curiosity than utility. If I'm writing a function that's supposed to run for ever, for instance a daemon, how would Python handle it if I called the function again from the ...
7
votes
4answers
276 views
How do I handle an infinite list of IO objects in Haskell?
I'm writing a program that reads from a list of files. The each file either contains a link to the next file or marks that it's the end of the chain.
Being new to Haskell, it seemed like the ...
7
votes
3answers
175 views
How can I represent a file system's symbolic links in a Perl hash?
On Server Fault, How to list symbolic link chains? (not my question) talks about listing all the symbolic links and following them. To make this doable, let's consider a single directory at first.
...
7
votes
2answers
955 views
C# - How to create a non-detectable infinite loop?
This is just an "I am Curious" question.
In C#-in-depth Jon Skeet says about lambda expressions:
"if there is a nonvoid return type every code path has to return a compatible value." (Page 233)
The ...
7
votes
12answers
790 views
Are endless loops in bad form?
So I have some C++ code for back-tracking nodes in a BFS algorithm. It looks a little like this:
typedef std::map<int> MapType;
bool IsValuePresent(const MapType& myMap, int beginVal, int ...
6
votes
3answers
461 views
How to find an infinite loop in a java web application?
One day our java web application goes up to 100% CPU usage.
A restart solve the incident but not the problem because a few hours after the problem came back.
We suspected a infinite loop introduced by ...
6
votes
3answers
260 views
A simple question about cin
this might be a very simple question.
In the following loop, if we type characters as the cin input instead of numbers which are expected, then it goes into infinite loop. Could anyone please explain ...
6
votes
5answers
543 views
Are compilers allowed to eliminate infinite loops?
Can optimizing compiler delete infinite loops, which does not changes any data, like
while(1)
/* noop */;
From analyzing a data flow graph compiler can derive, that such loop is "dead code" ...
5
votes
1answer
119 views
cpu usage increasing up to 100% in infinite loop in thread
I am implementing a web based chat platform in ASP.NET Web Application, and I use technique similar to long polling. I mean I keep each web request from client for a specific time period(timeout) or ...
5
votes
5answers
211 views
Why is it so bad to run a PHP script continuously?
I have a map. On this map I want to show live data collected from several tables, some of which have astounding amounts of rows. Needless to say, fetching this information takes a long time. Also, ...
5
votes
5answers
270 views
If you import yourself in Python, why don't you get an infinite loop?
This question is a response to the following SO post:
http://stackoverflow.com/questions/3558718/how-do-i-pickle-an-object/3558783#3558783
In that thread, the OP accidentally imports his own module ...
5
votes
4answers
421 views
How do I use less CPU with loops?
I've got a loop that looks like this:
while (elapsedTime < refreshRate)
{
timer.stopTimer();
elapsedTime=timer.getElapsedTime();
}
I read something similar to this elsewhere ...
5
votes
6answers
279 views
How can I test potentially “browser-crashing” JavaScript?
I've been having a crack at some of the problems over at http://projecteuler.net/ with JavaScript. I've been using a simple html page and running my code in script tags so I can log my results in the ...
5
votes
1answer
228 views
Python: why does this code take forever (infinite loop?)
I'm developing an app in Google App Engine. One of my methods is taking never completing, which makes me think it's caught in an infinite loop. I've stared at it, but can't figure it out.
Disclaimer: ...
5
votes
4answers
2k views
infinite loop in c++
I'm learning C++ and writing little programs as I go along. The following is one such program:
// This program is intended to take any integer and convert to the
// corresponding signed char.
...
4
votes
5answers
107 views
Infinite for loop in Python
I'm new to Python. Actually I implemented something using Java as shown below.
for(;;){
switch(expression){
case c1: statements
case c2: statements
default: statement
}
}
I ...
4
votes
2answers
135 views
Infinite loop in perl Carp module
We have some code which catches an exception, logs the message and then calls Carp::longmess to get the stacktrace.
So a simplified view of what we are doing is:
eval { <some SOAP::Lite stuff> ...
4
votes
2answers
131 views
Cancel infinite loop execution
When you get an infinite loop in jsfiddle in Chrome, your only choice (that I know of) is to close the tab. Of course, this means you lose all your work in the current window! Is there an easy way ...
4
votes
2answers
101 views
Stopping an infinite loop on a remote server PHP
I have a simple infinite for loop looking like this:
set_time_limit (0);
for (;;)
{
... //Doing some stuff including to write to a file
sleep(300);
}
It's running on my server. (Shared ...
4
votes
3answers
229 views
Impact of Thread.Sleep() in a continuous loop
Consider the following piece of code:
void MyRunningThread()
{
while(counter>0) // counter is a Class member that can get modified from external //threads
{
...
4
votes
5answers
173 views
Infinite loop problem with while loop and threading
Using a basic example to illustrate my problem I have 2 near-identical bits of code.
This code causes the while loop to run infinitely.
private boolean loadAsset() {
new Thread(new Runnable() {
...
4
votes
4answers
326 views
Debugging infinite loops in Haskell programs with GHCi
For the first time I've encountered an infinite loop in a Haskell program I'm writing. I've narrowed it down to a quite specific section of code, but I cannot seem to pinpoint exactly where I have a ...
4
votes
4answers
314 views
Consequences of an infinite loop on Google App Engine?
I am not a Google App Engine user. However, I understand you're billed for CPU time and other resources. What are the consequences if you happen to create an infinite loop? Will Google ever terminate ...
4
votes
8answers
1k views
SQL Server Trigger loop
I would like to know if there is anyway I can add a trigger on two tables that will replicate the data to the other.
For example:
I have a two users tables, users_V1 and users_V2, When a user is ...
4
votes
10answers
1k views
why is this an infinite loop in python?
I can't seem to figure out why this is an infinite loop in python??
for i in range(n):
j=1
while((i*j)<n):
j+=1
shouldn't the outer loop go n times. incrementing j until its equal ...
4
votes
3answers
357 views
Get stacktrace from stuck python process
I have to run a legacy Zope2 website and have some grievance with it. The biggest issue is that, occasionally, it just locks up, running at 100% CPU load and not answering to requests anymore. While ...
3
votes
3answers
83 views
How do I know if a class can be used as a static class?
My program has a handful of classes, and 2 forms. My first form "Main" has a button that will show the second form "formSettings" and a button that will open a log file.
FormSettings formSettings = ...
3
votes
3answers
101 views
How do I run long term (infinite) Python processes?
I've recently started experimenting with using Python for web development. So far I've had some success using Apache with mod_wsgi and the Django web framework for Python 2.7. However I have run into ...
3
votes
1answer
100 views
Fast Repeat TakeWhile causes infinite loop. (Rx)
How can I make the following observable repeat until stream.DataAvailable is false?
Currently it looks like it never stops.
AsyncReadChunk and Observable.Return inside the Defer section make OnNext ...
3
votes
2answers
131 views
Common Lisp: Why does this function cause infinite recursion?
I am trying to write a function (lnn; list-not-nil) similar to list that only appends values that are not nil.
(list nil 3) --> (NIL 3)
(lnn nil 3) --> (3)
Here is the code I have so far. For ...
3
votes
3answers
100 views
A server program is on an infinite loop. How to check for it?
A server program is on an infinite loop. How to check for it?
My solution:
use GDB to check the values of condition variables that control the loop.
It is ok for small program.
how to do that ...
3
votes
3answers
98 views
How Do I Safely Scan for Integer Input?
Scanner scanner = new Scanner();
int number = 1;
do
{
try
{
option = scanner.nextInt();
}
catch (InputMismatchException exception)
{
System.out.println("Integers ...
3
votes
3answers
129 views
Infinite “true” while loop
I know I am probably just doing something dumb wrong, but I need to take a number from the user, create an infinite loop (by making my while statement true) of multiples of 2. I got the math to ...
3
votes
3answers
276 views
C exit from infinite loop on keypress
How can I exit from an infinite loop, when a key is pressed?
Currently I'm using getch, but it will start blocking my loop as soon, as there is no more input to read.
3
votes
3answers
139 views
How to avoid infinite update loops in Swing?
I have a JPanel with a set of items (for example combo boxes and text fields). Some action listeners are implemented on those items to register user updates.
If the user selects a value in a ...
3
votes
1answer
216 views
Calling ArrayAdapter causes infinite loop?
In my app, I have an option to save an item to favourites. I save two ID's in an ArrayList. When a user calls favourites, it loops through the arraylist and for each item, I get the corresponding data ...
3
votes
1answer
205 views
Infinite recursion in Haskell
This question is essentially a duplicate of Debugging infinite loops in Haskell programs with GHCi. The author there solved it manually, though I'd like to know other solutions.
(my particular ...
3
votes
1answer
132 views
How can I detect elapsed time in Pascal?
I'm trying to create a simple game in Pascal. It uses the console. The goal in the game is to collect as many 'apples' as you can in 60 seconds. The game structure is a simple infinite loop. Each ...
3
votes
3answers
217 views
self-encoded QR barcode?
I was wondering if it's possible to create a QR in some file format, say png, then encode the png in QR, such that the resulting QR is the same one you started with?