摘要: 1.实现数组拷贝 private static int[] copyArray(int[] a){ if(a == null || a.length == 0 ){ return null; } int[] b = new int[a.length]; for(int i = 0;i<a.lengt 阅读全文
posted @ 2021-04-16 17:43 Doyourself! 阅读(53) 评论(0) 推荐(0)
摘要: 1.idea maven 的私服地址需要修改 2.mvn -version 找到 /usr/local/apache-maven-3.5.0 修改settings.xml 3.找到 /Users/fan/.m2 里面默认的settings.xml 阅读全文
posted @ 2021-04-16 11:48 Doyourself! 阅读(141) 评论(0) 推荐(0)