首页 > 代码库 > ArrayList与Vector、HashMap与HashTable
ArrayList与Vector、HashMap与HashTable
摘自api:
1、ArrayList与Vector:
原文:This class(ArrayList) is roughly equivalent to Vector, except that it is unsynchronized.
ArrayList是不同步的,Vector是同步的,在多线程环境中Vector更安全。如果在程序程序中不需要考虑线程安全,推荐使用ArrayList来代替Vector。
2、HashMap与HashTable:
原文:The HashMap class is roughly equivalent to Hashtable, except that it is unsynchronized and permits nulls.
HashMap可以除了不是同步的,并且允许null值来作为键值和元素值外,可以大致看做HashTable。HashTable不允许使用null值来作为键值和元素值。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。