首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > VB >

java 兑现重定义数组类似于VB的ReDim

2013-04-02 
java 实现重定义数组类似于VB的ReDim码农一个,直接上代码://param objArrthe expanded object of Array.//

java 实现重定义数组类似于VB的ReDim
码农一个,直接上代码:  //param objArr   the expanded object of Array.
         //param  newLength  the length of the new Array    public static Object getNewArr(Object objArr, int newLength) {if (!objArr.getClass().isArray()) {//判断类型return null;}// get the array's componentTypeClass componentType = objArr.getClass().getComponentType();//获得类型//get a newInstance of a Array object
 Object newArray = Array.newInstance(componentType, newLength);//新建数组对象
               //copy the array System.arraycopy(objArr, 0, newArray, 0, Array.getLength(objArr));//把原数组数据copy到新建数组中,其中newLength要大于元objArr的length,否则此句报错return newArray;}

热点排行