static Object |
Array.get(Object array, int index) |
返回指定数组对象中索引组件的值。
|
static boolean |
Array.getBoolean(Object array, int index) |
返回指定数组对象中索引组件的值,如
boolean 。
|
static byte |
Array.getByte(Object array, int index) |
返回指定数组对象中索引组件的值,如
byte 。
|
static char |
Array.getChar(Object array, int index) |
返回指定数组对象中索引组件的值,如
char 。
|
static double |
Array.getDouble(Object array, int index) |
返回指定数组对象中索引组件的值,如
double 。
|
static float |
Array.getFloat(Object array, int index) |
返回指定数组对象中索引组件的值,如
float 。
|
static int |
Array.getInt(Object array, int index) |
返回指定数组对象中索引组件的值,如
int 。
|
static long |
Array.getLong(Object array, int index) |
返回指定数组对象中索引组件的值,如
long 。
|
static short |
Array.getShort(Object array, int index) |
返回指定数组对象中索引组件的值,如
short 。
|
static void |
Array.set(Object array, int index, Object value) |
将指定数组对象的索引组件的值设置为指定的新值。
|
static void |
Array.setBoolean(Object array, int index, boolean z) |
将指定数组对象的索引组件的值设置为指定的
boolean 值。
|
static void |
Array.setByte(Object array, int index, byte b) |
将指定数组对象的索引组件的值设置为指定的
byte 值。
|
static void |
Array.setChar(Object array, int index, char c) |
将指定数组对象的索引组件的值设置为指定的
char 值。
|
static void |
Array.setDouble(Object array, int index, double d) |
将指定数组对象的索引组件的值设置为指定的
double 值。
|
static void |
Array.setFloat(Object array, int index, float f) |
将指定数组对象的索引组件的值设置为指定的
float 值。
|
static void |
Array.setInt(Object array, int index, int i) |
将指定数组对象的索引组件的值设置为指定的
int 值。
|
static void |
Array.setLong(Object array, int index, long l) |
将指定数组对象的索引组件的值设置为指定的
long 值。
|
static void |
Array.setShort(Object array, int index, short s) |
将指定数组对象的索引组件的值设置为指定的
short 值。
|