我更改了问题以便更清楚,请参阅下面的示例。
我可以在Java中创建任何类型的地图列表中的字典,其中值是一个函数吗?
如果是,我该怎么做,如何迭代它来调用函数?
我想要这样的事情:
dictionary values
{
0: { name1, func1)
1: {name2, func2)
.....
.....
}
for (values value: values.getValues())
{
///does something with
dictionary[value][0] //doing soething with the name
dictionary[value][1]() //calling the function
}