I was watching a video, and they showed that they were establishing a float array like this:
private final float x[];
I have always done this:
private final float[] x;
I tested both and neither produces an error. Is there a difference or is this just preference?