2016年4月2日
摘要:
package com.test; import java.util.*; public class Demo7_3 { public static void main(String[] args) { // TODO Auto-generated method stub Emp emp1 = new Emp("s001", "aaa", 12.3f...
阅读全文
posted @ 2016-04-02 00:28
让编程成为一种习惯
阅读(228)
推荐(0)
编辑
摘要:
package com.test; import java.util.*; public class Demo7_3 { public static void main(String[] args) { // TODO Auto-generated method stub Emp emp1 = new Emp("s001", "aaa", 12.3f...
阅读全文
posted @ 2016-04-02 00:06
让编程成为一种习惯
阅读(204)
推荐(0)
编辑
2016年4月1日
摘要:
package com.test; import java.util.*; public class Demo7_3 { public static void main(String[] args) { // TODO Auto-generated method stub Emp emp = new Emp("sa001", "xiaoming", ...
阅读全文
posted @ 2016-04-01 21:53
让编程成为一种习惯
阅读(770)
推荐(0)
编辑
摘要:
package com.test; import java.util.*; public class Demo7_3 { public static void main(String[] args) { // TODO Auto-generated method stub Vector vv = new Vector(); Emp e...
阅读全文
posted @ 2016-04-01 21:49
让编程成为一种习惯
阅读(327)
推荐(0)
编辑
摘要:
package com.test; import java.util.*; public class Demo7_3 { public static void main(String[] args) { // TODO Auto-generated method stub LinkedList ll = new LinkedList(); ...
阅读全文
posted @ 2016-04-01 21:45
让编程成为一种习惯
阅读(320)
推荐(0)
编辑
摘要:
/** * * @author Administrator * 功能:Java集合类ArrayList的使用 */ package com.test; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.*; public class Test2 { publi...
阅读全文
posted @ 2016-04-01 21:34
让编程成为一种习惯
阅读(386)
推荐(0)
编辑
摘要:
/** * * @author Administrator * 功能更:集合框架的使用之ArrayList的增删改查,演示Java集合的用法 */ package com.test; import java.awt.List; import java.util.ArrayList; import java.util.*; public class Test { publi...
阅读全文
posted @ 2016-04-01 18:03
让编程成为一种习惯
阅读(249)
推荐(0)
编辑
摘要:
package com.test; public class Test { public static void main(String[] args) { // TODO Auto-generated method stub //两种二位数组定义方式 // int a[][] = new int[2][3]; // int...
阅读全文
posted @ 2016-04-01 16:39
让编程成为一种习惯
阅读(263)
推荐(0)
编辑
摘要:
/** * * @author Administrator * 功能:二分查找 */ package com.test1; public class Demo5_4 { public static void main(String[] args) { // TODO Auto-generated method stub int arr[] =...
阅读全文
posted @ 2016-04-01 12:46
让编程成为一种习惯
阅读(176)
推荐(0)
编辑
摘要:
/** * * @author Administrator * 功能:交换式排序之快速排序 */ package com.test1; import java.util.Calendar; public class QuickSort { public static void main(String[] args) { // TODO Auto-gener...
阅读全文
posted @ 2016-04-01 12:25
让编程成为一种习惯
阅读(200)
推荐(0)
编辑
摘要:
/** * * @author Administrator * 功能:插入排序法 */ package com.test1; import java.util.Calendar; public class InsertionSort { public static void main(String[] args) { // TODO Auto-genera...
阅读全文
posted @ 2016-04-01 12:03
让编程成为一种习惯
阅读(323)
推荐(0)
编辑
摘要:
/** * * @author Administrator * 功能:交换式排序之冒泡排序 */ package com.test1; import java.util.Calendar; public class BubbleSort { public static void main(String[] args) { // TODO Auto-gene...
阅读全文
posted @ 2016-04-01 11:33
让编程成为一种习惯
阅读(278)
推荐(0)
编辑
摘要:
/** * * @author Administrator * 功能:选择排序法 */ package com.test1; import java.util.Calendar; public class SelectSort { public static void main(String[] args) { // TODO Auto-generated...
阅读全文
posted @ 2016-04-01 11:32
让编程成为一种习惯
阅读(220)
推荐(0)
编辑
2016年3月31日
摘要:
/** * * @author Administrator * 功能:接口体现多态 */ package com.test4; public class Test { public static void main(String[] args) { // TODO Auto-generated method stub CarShop aSho...
阅读全文
posted @ 2016-03-31 22:40
让编程成为一种习惯
阅读(291)
推荐(0)
编辑
摘要:
package com.test2; public class Test { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println(Usb.a); //创建一个计算机 Computer...
阅读全文
posted @ 2016-03-31 21:57
让编程成为一种习惯
阅读(242)
推荐(0)
编辑