|
3 |
edited title
|
||
Learning debugging to debug in Java. |
||||
|
2 |
edited title
|
||
Learning to Degug debugging in JavaApplications with JPDA. |
||||
|
1 |
|
||
Learning to Degug Java Applications with JPDAHi, I'm both learning to use the JPDA on Netbeans and solving the Prime Generator problem of Sphere's Online Judge. I've been reading this tutorial on netbeans.org about he JPDA, but haven't found it of much help. This code, which is based on a Sieve of Eratostenes implementation provided by starblue here, is running like this:
I know that the ArrayList primesList isn't getting initialized and I'm suspicious of this bit of code, cause honestly, I don't quite understand it:
It occurred to me to use a conditional breakpoint here with the condition of:
But I'm not sure if I'm able to get meaningful info this way. These are the screens I'm getting:
I don't know how to get useful info out of this. My questions are: a)I want to watch the primes BitSet as its going through this loop. How do I do that? b) What's exactly wrong with this code? How did you spot it using the debugger? Please, mention the step-by-step process.
|
||||


