随笔分类 -  面试

只有注册用户登录后才能阅读该文。
posted @ 2015-05-20 16:15 Earic 编辑
只有注册用户登录后才能阅读该文。
posted @ 2015-04-13 17:45 Earic 编辑
摘要://冒泡 for(int i = array.length -1; i > 0; i--){ for(int j = 0; j array[j+1]){ int tem = 0; tem = array[j]; array[j] = array[j+1]; ar... 阅读全文
posted @ 2015-04-09 18:02 Earic 编辑
摘要:// 得到当前方法的名字 public static void getName() { System.out.println(Thread.currentThread().getStackTrace()[1] .getMethodName()); } // 截屏 public static void c... 阅读全文
posted @ 2015-03-05 16:24 Earic 编辑