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

通过反射修改已有数组的大小

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

标签:style   color   java   ar   for   on   c   new   ef   

import java.lang.reflect.Array;

public class ChangeArrayDemo {
    public static void main(String[] args) {
        int temp[] = { 1, 2, 3 };
        int newTemp[] = (int[]) arrayInc(temp, 5);
        print(newTemp);
        System.out.println("\n=============================");
        String t[] = { "von", "mldn", "java" };
        String nt[] = (String[]) arrayInc(t, 8);
        print(nt);
    }

    public static Object arrayInc(Object obj, int len) {
        Class<?> c = obj.getClass();
        Class<?> arr = c.getComponentType();
        Object newO = Array.newInstance(arr, len);
        int co = Array.getLength(obj);
        System.arraycopy(obj, 0, newO, 0, co);
        return newO;
    }

    public static void print(Object obj) {
        Class<?> c = obj.getClass();
        if (!c.isArray()) {
            return;
        }
        Class<?> arr = c.getComponentType();
        System.out.println(arr.getName() + "Array‘s length is:"
                + Array.getLength(obj));
        for (int i = 0; i < Array.getLength(obj); i++) {
            System.out.print(Array.get(obj, i) + ",");
        }
    }
}

通过反射修改已有数组的大小

标签:style   color   java   ar   for   on   c   new   ef   

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

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