Open In App

Array setChar() method in Java

The java.lang.reflect.Array.setChar() is an inbuilt method in Java and is used to change a specified char value to a specified index of a given object array.

Syntax:



Array.setChar(Object []array, int index, char value)

Parameter: This method takes three parameters:

Return Value: This method has a void return type. Hence this doesn’t returns any value. The update reflects upon the Object array passed as the argument.



Exceptions: This method throws following exception:

Article Tags :