gslgb
String[] a = new String[];
String[] b = new String[];
String[] c = new String[a.length+b.length]; 
//System.arraycopy(src,srcStartPosition,des,desStartPosition,要复制的长度)
System.arraycopy(a, 0, c, 0, a.length); 
System.arraycopy(b, 0, c, a.length, b.length);

return c;

 


分类:

技术点:

相关文章:

  • 2017-12-02
  • 2021-11-06
  • 2021-11-19
  • 2021-11-19
  • 2021-11-19
  • 2021-11-18
猜你喜欢
  • 2021-11-19
  • 2021-11-19
  • 2021-05-18
  • 2021-11-19
  • 2021-11-19
  • 2021-11-19
  • 2021-11-19
相关资源
相似解决方案