Learning to debug in Java. - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T15:00:37Zhttp://stackoverflow.com/feeds/question/1077404http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1077404/learning-to-debug-in-java0Learning to debug in Java.dmindreader2009-07-03T01:01:13Z2009-07-03T09:05:53Z
<p>Hi, I'm both learning to use the JPDA on Netbeans and solving the <a href="http://www.spoj.pl/problems/PRIME1/" rel="nofollow">Prime Generator</a> problem of Sphere's Online Judge. </p>
<p>I've been reading <a href="http://www.netbeans.org/kb/55/using-netbeans/debug.html" rel="nofollow">this tutorial on netbeans.org</a> about he JPDA, but haven't found it of much help. </p>
<p>This code, which is based on a Sieve of Eratostenes implementation provided by starblue <a href="http://stackoverflow.com/questions/1042902/most-elegant-way-to-generate-prime-numbers">here</a>, is running like this:</p>
<pre><code>2
1 10
//here the primes between 1 and 10 should print
3 5
//here the primes between 3 and 5 should print
package sphere;
/**
*
* @author Administrator
*/
//import java.util.ArrayList;
import java.util.BitSet;
import java.lang.Math.*;
import java.util.ArrayList;
public class Main
{
public static int ApproximateNthPrime(int nn)
{
double n = (double)nn;
double p;
if (nn >= 7022)
{
p = n * Math.log(n) + n * (Math.log(Math.log(n)) - 0.9385);
}
else if (nn >= 6)
{
p = n * Math.log(n) + n * Math.log(Math.log(n));
}
else if (nn > 0)
{
p = new int[] { 2, 3, 5, 7, 11 }[nn - 1];
}
else
{
p = 0;
}
return (int)p;
}
// Find all primes up to and including the limit
public static BitSet SieveOfEratosthenes(int limit)
{
final BitSet primes = new BitSet();
primes.set(0,false);
primes.set(1,false);
primes.set(2,limit,true);
for (int i =0; i*i<limit;i++)
{
if (primes.get(i))
{
for (int j=i*1; j<limit;j+=1)
{
primes.clear(j);// hace que el indice j sea false (no primo)
}
}
}
return primes;
}
public static ArrayList<Integer> GeneratePrimesSieveOfEratosthenes(int n)
{
int limit = ApproximateNthPrime(n);
BitSet bits = SieveOfEratosthenes(limit);
ArrayList <Integer> primes = new ArrayList<Integer>();
for (int i = 0, found = 0; i < limit && found < n; i++)
{
if (bits.get(i))
{
primes.add(i);
found++;
}
}
return primes;
}
public static void main (String[] args) throws java.lang.Exception
{
java.io.BufferedReader r = new java.io.BufferedReader (new java.io.InputStreamReader (System.in));
String s;
s= r.readLine();
int test_cases = Integer.parseInt(s);
int case_counter =0;
while (case_counter<test_cases) {
// System.out.println(s);
s = r.readLine();
String [] splitted = s.split(" ");
int lower_bound = Integer.parseInt(splitted[0]);
int upper_bound = Integer.parseInt(splitted[1]);
ArrayList <Integer> primesList= GeneratePrimesSieveOfEratosthenes(upper_bound);
for (int i =0; i<primesList.size();i++){
if (primesList.get(i)<=lower_bound)System.out.println(primesList.get(i));
}
case_counter++;
System.out.println(" "); // space that separates test cases
}
}
}
</code></pre>
<p>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:</p>
<pre><code>if (primes.get(i))
{
for (int j=i*1; j<limit;j+=1)
{
primes.clear(j);
}
}
</code></pre>
<p>It occurred to me to use a conditional breakpoint here with the condition of:</p>
<pre><code>primes.get(j)==false
</code></pre>
<p>But I'm not sure if I'm able to get meaningful info this way. These are the screens I'm getting:</p>
<p><img src="http://img525.imageshack.us/img525/6238/breakpoints.jpg" alt="alt text" /></p>
<p><img src="http://img98.imageshack.us/img98/5262/watchesz.jpg" alt="alt text" /></p>
<p>I don't know ho
http://stackoverflow.com/questions/1077404/learning-to-debug-in-java/1078474#10784741Answer by David Moles for Learning to debug in Java.David Moles2009-07-03T09:05:53Z2009-07-03T09:05:53Z<p>So, I extracted out the following method:</p>
<pre><code> private static void printPrimes(int lower_bound, int upper_bound) {
ArrayList<Integer> primesList = GeneratePrimesSieveOfEratosthenes(upper_bound);
for (int i = 0; i < primesList.size(); i++) {
if (primesList.get(i) <= lower_bound)
System.out.println(primesList.get(i));
}
}
</code></pre>
<p>and changed the <code>main()</code> method to just call that with a couple of arbitrary arguments (10 and 100), because I didn't want to mess around with the console and the debugger at the same time. I then (I'm using Eclipse) put ordinary breakpoints at the beginning and end lines of <code>ApproximateNthPrime()</code>, <code>SieveOfEratosthenes()</code> and <code>GeneratePrimesSieveOfEratosthenes()</code> to make sure they were being called. (By the way, Java convention, unlike C#, is for method names to start with a lower-case letter.)</p>
<p>All that was without bothering to understand the code. :) However, after the first run-through, it was pretty clear that the problem is that the <code>BitSet</code> produced by <code>SieveOfEratosthenes()</code> is always empty (or rather, always entirely <code>false</code>). I haven't used the NetBeans debugger, but I suspect the "Local Variables" tab is your friend here.</p>
<p>I'm not going to do your homework for you. :) But the idea of the Sieve of Eratosthenes is to skip the prime numbers and only eliminate the non-primes. Examine your <code>SieveOfEratosthenes()</code> method and ask yourself: when will it skip a number?</p>