Close

Java Reflection - Array.setLong() 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 setLong(Object array,
                           int index,
                           long l)
                    throws IllegalArgumentException,
                           ArrayIndexOutOfBoundsException

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


Examples


package com.logicbig.example.array;

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

public class SetLongExample {

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

Output

[0, 55, 110]




See Also