System类的概述和方法使用

2019-01-02  本文已影响0人  想飞的键盘手

System类的概述

成员方法

int src = {11,22,33,44,55};
int dest = new int[8];
System.arraycopy(src,0,dest,0,src.length);
// 集合的长度可变 就是不断创建新的数组(1.5倍) 用的就是这个方法
上一篇下一篇

猜你喜欢

热点阅读