1.throw和throws[note type="flat"]throw用于显式地抛出一个异常。[/note] private static void printArr(int[] arr){
if (arr == null){
...
阅读全文...
Arrays类中的三个静态方法
[note type="flat"]Arrays类包含用于操作数组的各种方法[/note]1.toStringpublic static String toString(int[] a) int[] arr = { 1, 8, 9, 4, ...
阅读全文...
阅读全文...
Java二分查找与冒泡排序
1.二分查找[note type="flat"]没啥好说的 看代码就好[/note] private static int erFenChaZhao(int[] arr, int result){
int min = 0;
...
阅读全文...
阅读全文...
Java常见的API
1.Mathpublic static int abs(int a) //返回参数的绝对值
public static double ceil(doublea) //向上取整
public static double floor(double a) /...
阅读全文...
阅读全文...
内部类&Lambda
1.公开的内部类实例化[note type="flat"]外部类.内部类.实例名 = new 外部类().new 内部类();[/note]public class Outter {
public class Inner{
pub...
阅读全文...
阅读全文...