美文网首页
Arrays.copyOf和System.arraycopy

Arrays.copyOf和System.arraycopy

作者: WY_250e | 来源:发表于2017-12-28 11:48 被阅读0次

http://blog.csdn.net/mazhimazh/article/details/19212829

  1. public static <T> T[] copyOf(T[] original, int newLength)
    长度大于src,后面的都为null
    长度小于src,截取
  2. void arraycopy(Object src, int srcPos,
    Object dest, int destPos,
    int length);
    长度大于src,后面的都为null
    长度小于src,抛错

相关文章

网友评论

      本文标题:Arrays.copyOf和System.arraycopy

      本文链接:https://www.haomeiwen.com/subject/tvimgxtx.html