Microsoft SDK for Java

IntArrayOutputStream Class Constructors

The IntArrayOutputStream Class contains the following constructors:

IntArrayOutputStream()
IntArrayOutputStream(int size)
IntArrayOutputStream(int[] stuff)

IntArrayOutputStream()

Creates an IntArrayOutputStream object that can hold 16 integers.

Syntax

public IntArrayOutputStream();

IntArrayOutputStream(int size)

Creates an IntArrayOutputStream object that can hold the specified number of integers.

Syntax

public IntArrayOutputStream(int size);

Parameters

size The number of integers that the output stream can hold.

IntArrayOutputStream(int[] stuff)

Creates an IntArrayOutputStream object initialized with integer values.

Syntax

public IntArrayOutputStream(int[] stuff);

Parameters

stuff The initial values for the output stream.

© 1999 Microsoft Corporation. All rights reserved. Terms of use.