Tagged Questions

2
votes
1answer
175 views

Rare infinite loop in code, don't want to wait for it to happen again

Ok, so I've got a genetic algorithm running in netbeans, and its been running for like 5 hours and seems to have entered an infinite loop. Is there any way that I can attach a debugger to it? or at ...
1
vote
3answers
72 views

Blackberry can't stop audio when setLoopCount(-1);

I have the following code: InputStream stream = (InputStream)this.getClass().getResourceAsStream("/preview.mp3"); Player p = Manager.createPlayer(stream, "audio/mpeg"); ...
1
vote
1answer
112 views

Java For Loop Inside Constructor is Infinitely Repeating

So, for some reason when I try to use a for loop to initialize panels in chess board, it actually loops the loop itself. In other words, it doesn't go on forever, but it starts and completes again and ...
1
vote
2answers
158 views

How does Java store +-Infinite in memory?

If it takes all 32 bits to store from -2^31 to 2^31, how can it store + and - Infinite? Does it use more memory? Is it good and safe to store those values? UPDATE: Thanks to the answers, I know that ...
1
vote
0answers
369 views

Android infinite/ circular horizontal scrolling layout?

I just got the ADW EX Launcher and found that it has an "Infinite Scrolling" feature. I opened up hierarchy viewer in the Android SDK and found that it is using the Workspace and Draglayer layout. I ...
1
vote
3answers
372 views

UDP threading infinite loop in Java

I've written two programs. Now each program uses threading to send and receive packets at the same time. Whenever I send packets from the server to the client, the message at the client ends gets ...
1
vote
3answers
499 views

How do make an infinite jscrollpane?

I've implemented drag scroll before, but what's the best way to go about creating an infinite scroll pane? Of course there won't be any scrollbars and I will implement drag scroll. What I am trying ...
1
vote
6answers
250 views

Stuck in a loop ! :o

I'm trying to implement my own List system in Java. the List class file : package RoutingDemo.List; /** * A 2-way Linked-List to store generic elements. * */ public class List { /* ...
1
vote
6answers
457 views

How can I make an iterator that never ends?

I was just wondering what the easiest way to iterate over a set indefinitely, i.e. when it reaches the end it next(); calls the first object. I'm assuming that this is not an already predefined ...
0
votes
4answers
78 views

Java Infinite very long loop

I have to do a Java infinite loop but 1 loop would last 24 hours. What is the best way to do it ? How could I kill it ? Pause and resume it ? Thank you very much Regards. Vincent
0
votes
3answers
108 views

boolean flag not read in while loop (java)

I've written a program to bounce a ball around a screen. The program as written below does not work (the ball just moves off screen). However if I declare the boolean variables atHorizontalEdge and ...
0
votes
3answers
113 views

While loop getting stuck in infinite loop

I am trying to figure out why my program is printing the same statement repeatedly. I am able to get this method to work fine when I am putting in good values, but I have an else statement set up to ...
0
votes
1answer
69 views

How to create a new file if an existing one already exists?

I was wondering if it was possible to create a method that would check if the current file exists, and if it does, then it creates a new file with the same name but +1. Eg. file, file1,file2,file3. ...
0
votes
5answers
186 views

Java: How to find hole in a one dimensional graph?

I know this has asked before but I couldn't make anything out of the answers so I hope someone will be able to explain this to me in a really easy way.... The Problem: A man is standing in front of ...
0
votes
2answers
106 views

I am having trouble with the program skipping over the first input when looping. Please help

Ok, so I had to modify my already working program to use 2 separate classes...one to perform the task and one to store info. Once it does the first calculation and it gets to the second entry, it ...