The IntArrayOutputStream Class contains the following constructors:
IntArrayOutputStream()
IntArrayOutputStream(int size)
IntArrayOutputStream(int[] stuff)
Creates an IntArrayOutputStream object that can hold 16 integers.
public IntArrayOutputStream();
Creates an IntArrayOutputStream object that can hold the specified number of integers.
public IntArrayOutputStream(int size);
size | The number of integers that the output stream can hold. |
Creates an IntArrayOutputStream object initialized with integer values.
public IntArrayOutputStream(int[] stuff);
stuff | The initial values for the output stream. |