...
This noncompliant code example writes an array object arr
a sequence of array objects to a stream. The array object arr
is created afresh within the loop and filled uniformly with the value of the loop counter. This may result in an OutOfMemoryError
because the stream is kept open while new objects are being written to it.
...