##1 String 对象一旦创建就不能更改
##2 StringBuffer、StringBuilder对象创建后可以更改,区别是StringBuffer线程安全,StringBuilder用于单线程
##3 Pattern是正则表达式类,String类中也有正则匹配的方法
##4 基本数据类型都有对应的包装类: Short Integer Long Float Double Boolean
##5 ArrayList和Vector都实现了 List 接口,Vector多线程安全,ArrayList用于单线程
##6 Collection 接口是 总接口, BeanContext, BeanContextServices, BlockingDeque, BlockingQueue, Deque, List, NavigableSet,Queue, Set, SortedSet, TransferQueue 是 Collection接口的子接口
##7 Map是一个接口,实现它的重要的类有 HashMap HashTable TreeMap 等
##8 HashMap和HashTable的区别
- (1)HashMap 是 unsynchronized(非线程安全)
- (2)HashMap 允许 key/Value 为 null,而HashTable不允许