Open In App

Array setShort() method in Java

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

Syntax:



Array.setShort(Object []array,int index, short value)

Parameters: This method takes 3 parameters:

Exception: This method throws following exceptions:



Article Tags :