码迷,mamicode.com
首页 > 其他好文 > 详细

通过反射取得并修改数组信息

时间:2014-09-04 18:39:19      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:java   ar   for   on   c   ef   type   as   r   

import java.lang.reflect.Array;

public class ClassArrayDemo {
    public static void main(String[] args) {
        int temp[] = { 1, 2, 3 };
        Class<?> c = temp.getClass().getComponentType();
        System.out.println("TYPE:" + c.getName());
        System.out.println("LENGTH:" + Array.getLength(temp));
        System.out.println("FRIST CONTENT:" + Array.get(temp, 0));

        Array.set(temp, 0, 6);
        System.out.println("LENGTH:" + Array.getLength(temp));
        System.out.println("FRIST CONTENT:" + Array.get(temp, 0));
        for (int i = 0; i < temp.length; i++) {
            System.out.print(temp[i] + ",");
        }
    }
}

通过反射取得并修改数组信息

标签:java   ar   for   on   c   ef   type   as   r   

原文地址:http://www.cnblogs.com/vonk/p/3956546.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!