Home » Java Array getChar() Method

Java Array getChar() Method

by Online Tutorials Library

Java Array getChar() Method

The getChar() method of Array class returns the value of the indexed component in the specified array object, as a char.

Syntax

Parameter

array – the array

index – the index

Returns

The value of the indexed component in the specified array

Throws

NullPointerException

IllegalArgumentException

ArrayIndexOutOfBoundsException

Example 1

Test it Now

Output:

Value :: T  

Example 2

Test it Now

Output:

array[0] = J  array[1] = A  array[2] = V  array[2] = A  
Next TopicJava Array Class

You may also like