我在Eclipse中有这个Java代码,我想调试。
这是代码:
public Double repulsion(Node n1, Node n2) {
Double rep = 0.0;
rep = Math.pow(K, 2) / distEuc(n1, n2);
System.out.println("Répulsion : " + rep);
listForcesRep.add(rep);
return rep;
}
private Double distEuc(Node n1, Node n2) {
Double d = 0.0;
Object[] n1Attributes = n1.getAttribute("xy");
Double x1 = (Double) n1Attributes[0];
Double y1 = (Double) n1Attributes[1];
Object[] n2Attributes = n2.getAttribute("xy");
Double x2 = (Double) n2Attributes[0];
Double y2 = (Double) n2Attributes[1];
d = Math.sqrt((Math.pow(x1 - x2, 2) + Math.pow(y1 - y2, 2)));
return d;
}
我在第rep = Math.pow(K, 2) / distEuc(n1, n2);
行切换了一个断点,我以默认值运行调试器,它运行正常。
问题在于,rep
变量在某些时候采用值NaN
,我需要一个条件断点才能理解原因。
我像这样设置条件断点:
但是当我运行调试时,它会跳过断点并继续循环。
我做错了什么?我该如何解决?
谢谢!
答案 0 :(得分:7)
那是因为rep
在该行中仍然等于0.0:Double rep = 0.0;
在计算System.out.println("Répulsion : " + rep);
值后,您需要在rep
处放置一个条件断点,然后当执行在该行停止时,您将“Drop to Frame”再次执行该方法。
您还应该使用Double.isNaN(rep)
或rep.isNaN()
代替rep == Double.NaN
。