计算阶乘
public static long factorial(int n) { if (n <= 1) return 1; else return n * factorial(n - 1);
}
Arrays.binarySearch()
Arrays.binarySearch(arr,target)是用于在有序数组中进行二分查找的方法
public static void test(){int[] arr = {2,3,5,6,9,12};int target = 6;int i = Arrays.binarySearch(arr,target);System.out.println(i); //得到6在数组中的索引}
System.arraycopy()
System.arraycopy()用于数组复制
System.arraycopy(源数组,源数组中的起始位置,目标数组,目标数组中的起始位置,要复制的数量)