Vector HashMap ArrayList StringBuffer Properties A,Vector相当于一个线程安全的List B,HashMap是非线程安全的,其对应的线程安全类是HashTable C,Arraylist是非线程安全的,其对应的线程安全类是Vector D,StringBuffer是线程安全的,相当于一个线程安全的StringBuilder E,Properties实现了Map接口,是线程安全的