Close

Java Reflection - Array.setByte() Examples

Java Reflection Java Java API 


Class:

java.lang.reflect.Array

java.lang.Objectjava.lang.Objectjava.lang.reflect.Arrayjava.lang.reflect.ArrayLogicBig

Method:

public static void setByte(Object array,
                           int index,
                           byte b)
                    throws IllegalArgumentException,
                           ArrayIndexOutOfBoundsException

Sets the value of the indexed component of the specified array object to the specified byte value.


Examples


package com.logicbig.example.array;

import java.lang.reflect.Array;
import java.util.Arrays;

public class SetByteExample {


public static void main(String... args) {
Object o = Array.newInstance(byte.class, 3);
for (int i = 0; i < 3; i++) {
Array.setByte(o, i, (byte) i);
}
System.out.println(Arrays.toString((byte[]) o));
}
}

Output

[0, 1, 2]




See Also