I'm having trouble trying to create an array of float or double. I'm using JDE 4.1.0.185. What happens is when I set a breakpoint any time after this array declaration has executed, the debugger freezes. Not sure if this is something I'm doing wrong, or if it's an issue with the JDE itself...??
Strange thing is, when I change the array to any form of an int or long, it's fine. But with float or double, the debugger chokes. I can also use a float or double variable, it's just the array that causes a problem. Tried using strictfp (long shot, but don't know what else to try), that didn't fix it.
Here's the code:
Code:
public class myClass {
// any of these variations cause the problem
private double [] C = new double [4];
private double [][] C = new double [4][4];
private float [] C = new float [4];
private float [][] C = new float [4][4];
// this is fine:
private int [][] C = new int [4][4];
TIA