从List检索元素对性能的影响

时间:2015-11-23 13:23:35

标签: java list dictionary arraylist hashmap

在我的代码中,我维护一个数据堆,其基本组件是Map。地图有点像:

Key -TableName\Field\Attribute1
Value-3

我曾经通过以下方式检索我的价值:

map.get(key)

现在我需要一个List而不是值。这个地图有点像:

Key -TableName\Field\Attribute1
Value-[3,30,300]

现在我需要通过以下方式检索我的价值:

map.get(key).get(index)

此更改会对我的代码的性能产生多大影响?

0 个答案:

没有答案