The array has two elements; array.length returns 20

I have an array BufferedImage

. At an example breakpoint, the array contains two elements. In any case, the length property returns 20. How is this possible?

eclipse debugger

+3


source to share


1 answer


This is similar to setting up an IDE. It only displays nonzero elements in an array in debug mode. Eclipse does this.



+8


source







All Articles