Field setShort() method in Java with Examples

The setShort() method of java.lang.reflect.Field is used to set the value of a field as a short on the specified object. When you need to set the value of a field of an object as short then you can use this method to set value over an Object. Syntax:
public void setShort(Object obj, short s)
throws IllegalArgumentException,
IllegalAccessException
Parameters: This method accepts  two parameters:
- obj: which is the object whose field should be modified and
- s: which is the new value for the field of obj being modified.
Return: This method returns nothing.
 Exception: This method throws the following Exception:
- IllegalAccessException: if this Field object is enforcing Java language access control and the underlying field is either inaccessible or final.
- IllegalArgumentException: if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementer thereof), or if an unwrapping conversion fails.
- NullPoshorterException: if the specified object is null and the field is an instance field.
- ExceptionInitializerError: if the initialization provoked by this method fails.
Below programs illustrate setShort() method:Â
Program 1:Â
Java
// Java program to illustrate setShort() methodÂ
import java.lang.reflect.Field;Â
public class GFG {Â
    public static void main(String[] args)        throws Exception    {Â
        // create user object        Employee emp = new Employee();Â
        // print value of uniqueNo        System.out.println(            "Value of uniqueNo before "            + "applying setShort is "            + emp.uniqueNo);Â
        // Get the field object        Field field            = Employee.class                  .getField("uniqueNo");Â
        // Apply setShort Method        field.setShort(emp, (short)134);Â
        // print value of uniqueNo        System.out.println(            "Value of uniqueNo after "            + "applying setShort is "            + emp.uniqueNo);    }}Â
// sample classclass Employee {Â
    // static short values    public static short uniqueNo = 239;} |
Output:
Value of uniqueNo before applying setShort is 239 Value of uniqueNo after applying setShort is 134
Program 2:Â
Java
// Java Program to illustrate setShort() methodÂ
import java.lang.reflect.Field;Â
public class GFG {Â
    public static void main(String[] args)        throws Exception    {Â
        // create Numbers object        Numbers no = new Numbers();Â
        // Get the value field object        Field field            = Numbers.class.getField("value");Â
        // Apply setShort Method        field.setShort(no, (short)5366);Â
        // print value of isActive        System.out.println(            "Value after "            + "applying setShort is "            + Numbers.value);    }}Â
// sample Numbers classclass Numbers {Â
    // static short value    public static short value = 13685;} |
Output:
Value after applying setShort is 5366
References: https://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Field.html#setShort-java.lang.Object-short-



