相邻的两个数依次的比较,将大的换在后面,每冒泡一次得到的最后一个数字是最大的,第二次就不需要比较了,所以减i,为什么还有减1,是因为后面有j+1,如果不减1的话就会出现下标越界的异常。 ArrayIndexOutOfRoundsException;
每个元素在数组的位置就是索引。索引从零开始。取值[0,arr.length-1]arr[1]是数组的第二项。
第三方jar包commons-lang中的类 定义:/ Validate that the argument condition is {@code true}; otherwise throwing an exception with the specified message. This method is useful when validating according to an arbitrary boolean expression, such as validating a primitive number or using your...
当i小于num1的长度减去num2的长度时,继续循环