摘要: 阅读全文
posted @ 2016-09-01 21:03 代码洁癖爱好者 阅读(106) 评论(0) 推荐(0) 编辑
摘要: package aa; public class AA01 { public static void show(String s){ System.out.println(s); } public void test(){ AA01.show("test"); } public static voi 阅读全文
posted @ 2016-09-01 20:31 代码洁癖爱好者 阅读(187) 评论(0) 推荐(0) 编辑
摘要: package com.wulianshang.cn import java.util.Random; public class BubbleSort { public void bubbleSort(int[] list) { int temp = 0; for(int i=0;i<list.le 阅读全文
posted @ 2016-09-01 18:10 代码洁癖爱好者 阅读(127) 评论(0) 推荐(0) 编辑