码迷,mamicode.com
首页 > 其他好文 > 详细

ArrayList与Vector、HashMap与HashTable

时间:2014-08-19 22:16:55      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:使用   ar   on   sp   ui   table   程序   c   

摘自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值来作为键值和元素值。

ArrayList与Vector、HashMap与HashTable,布布扣,bubuko.com

ArrayList与Vector、HashMap与HashTable

标签:使用   ar   on   sp   ui   table   程序   c   

原文地址:http://www.cnblogs.com/-crazysnail/p/3923089.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!