2016年4月2日
摘要:
Java编程可以分为三个方向 ① Java se (j2se) 桌面开发 ② Java ee (j2ee) WEB开发 ③ Java me (j2me) 手机开发 java se 是基础中的基础 Java se 课程介绍 Java 面向对象编程 Java图形界面开发(swing) Java数据库编程
阅读全文
posted @ 2016-04-02 11:22
让编程成为一种习惯
阅读(206)
推荐(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:28
让编程成为一种习惯
阅读(234)
推荐(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
让编程成为一种习惯
阅读(216)
推荐(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
让编程成为一种习惯
阅读(776)
推荐(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
让编程成为一种习惯
阅读(334)
推荐(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
让编程成为一种习惯
阅读(326)
推荐(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
让编程成为一种习惯
阅读(390)
推荐(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
让编程成为一种习惯
阅读(253)
推荐(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
让编程成为一种习惯
阅读(268)
推荐(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
让编程成为一种习惯
阅读(180)
推荐(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
让编程成为一种习惯
阅读(204)
推荐(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
让编程成为一种习惯
阅读(328)
推荐(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
让编程成为一种习惯
阅读(283)
推荐(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
让编程成为一种习惯
阅读(223)
推荐(0)