06 2018 档案

IO,File对象-构造函数和常用方法
摘要:1 import java.io.File; 2 import java.text.DateFormat; 3 import java.util.Date; 4 5 public class FileDemo { 6 public static void main(String[] args) throws Exception{ 7 creatAndDel... 阅读全文

posted @ 2018-06-06 23:55 冷小超 阅读(479) 评论(0) 推荐(0)

多态练习
摘要:1 public class Fu { 2 int num = 3; 3 void show() { 4 System.out.println("F1"); 5 } 6 static void method() { 7 System.out.println("F2"); 8 } 9 } 1 public class Z... 阅读全文

posted @ 2018-06-05 20:50 冷小超 阅读(139) 评论(2) 推荐(0)

jquery购物车添加功能
摘要:1 2 3 4 5 6 14 15 16 17 18 19 java 20 21 单价... 阅读全文

posted @ 2018-06-04 19:35 冷小超 阅读(1134) 评论(0) 推荐(0)

集合,ArrayList练习
摘要:1 import java.util.ArrayList; 2 import java.util.Iterator; 3 4 public class ArrayListTest { 5 public static void main(String[] args) { 6 ArrayList list = new ArrayList(); 7 ... 阅读全文

posted @ 2018-06-02 15:12 冷小超 阅读(459) 评论(0) 推荐(0)

IO流,Properties基本功能和遍历
摘要:1 import java.util.Enumeration; 2 import java.util.Iterator; 3 import java.util.Properties; 4 import java.util.Set; 5 6 public class PropertiesDemo { 7 public static void main(String[] ar... 阅读全文

posted @ 2018-06-01 09:26 冷小超 阅读(431) 评论(0) 推荐(0)

导航