笔记
银色彗星
这个作者很懒,什么都没留下…
展开
-
java集合框架类
java集合框架类HashSet实例化: HashSet numberSet =new HashSet();特点:加入HashSet的数据不能够重复。ArrayList实例化:List<> al=new ArrayLIst<>();插入数据:al.add(data);数据的取出(get)加修改(set):int n = l.get(index); n++; l...原创 2020-03-10 21:06:52 · 157 阅读 · 0 评论 -
线程安全的类
HashMap和HashTableHashMap和HashTable 都以键值对的方式储存数据,但HashTable是线程安全的类,HashMap不是。StringBuffer和StringBuilderStringBuffer是线程安全的类而StringBuilder不是。所以,StringBuilder运行时间比StringBuffer短,因为省略了同步的时间。ArrayList和V...原创 2020-03-09 22:47:25 · 140 阅读 · 0 评论 -
多线程基础知识笔记
创建线程的三种方式要启动线程必须重写run方法1.继承Thread类public class serverThread extends Thread{ public String str; //方法的重载 public serverThread(String str){ this.str=str; public void r...原创 2020-03-09 21:48:46 · 260 阅读 · 0 评论