java.lang.reflect.Array
类提供静态方法来动态创建和访问Java
数组。 Array
允许在get
或set
操作期间扩展转换,但如果发生缩小转换,则会抛出IllegalArgumentException
异常。
类声明
以下是java.lang.reflect.Array
类的声明 -
public final class Array
extends Object
类方法
序号 |
方法 |
描述 |
1 |
static Object get(Object array, int index) |
以对象形式返回指定数组对象中的索引组件的值。 |
2 |
static boolean getBoolean(Object array, int index) |
以布尔值形式返回指定数组对象中的索引组件的值。 |
3 |
static byte getByte(Object array, int index) |
以字节形式返回指定数组对象中的索引组件的值。 |
4 |
static char getChar(Object array, int index) |
以char 形式返回指定数组对象中的索引组件的值。 |
5 |
static double getDouble(Object array, int index) |
以double 形式返回指定的数组对象的索引组件的值。 |
6 |
static float getFloat(Object array, int index) |
以float 形式返回指定数组对象中的索引组件的值。 |
7 |
static int getInt(Object array, int index) |
以int 形式返回指定数组对象中的索引组件的值。 |
8 |
static int getLength(Object array) |
以int 形式返回指定数组对象的长度。 |
9 |
static long getLong(Object array, int index) |
以long 形式返回指定数组对象中的索引组件的值。 |
10 |
static short getShort(Object array, int index) |
以short 形式返回指定数组对象中的索引组件的值。 |
11 |
static Object newInstance(Class<?> componentType, int dimensions) |
创建具有指定组件类型和维度的新数组。 |
12 |
static Object newInstance(Class<?> componentType, int length) |
创建具有指定组件类型和长度的新数组。 |
13 |
static void set(Object array, int index, Object value) |
将指定数组对象的索引组件的值设置为指定的新值。 |
14 |
static void setBoolean(Object array, int index, boolean z) |
将指定数组对象的索引组件的值设置为指定的布尔值。 |
15 |
static void setByte(Object array, int index, byte b) |
将指定数组对象的索引组件的值设置为指定的字节值。 |
16 |
static void setChar(Object array, int index, char c) |
将指定数组对象的索引组件的值设置为指定的char 值。 |
17 |
static void setDouble(Object array, int index, double d) |
将指定数组对象的索引组件的值设置为指定的double 值。 |
18 |
static void setFloat(Object array, int index, float f) |
将指定数组对象的索引组件的值设置为指定的浮点值。 |
19 |
static void setInt(Object array, int index, int i) |
将指定数组对象的索引组件的值设置为指定的int 值。 |
20 |
static void setLong(Object array, int index, long l) |
将指定数组对象的索引组件的值设置为指定的长整型值。 |
21 |
static void setShort(Object array, int index, short s) |
将指定数组对象的索引组件的值设置为指定的短整型值。 |
方法继承
此类继承以下类的方法 -