在编程中,获取 foreach
循环的当前迭代的索引通常需要使用其他循环结构,例如 for
循环。以下是一些常见编程语言中如何在 foreach
循环中获取当前迭代的索引:
int index = 0;
foreach (var item in collection)
{
// 在此处使用 index
index++;
}
let index = 0;
collection.forEach((item) => {
// 在此处使用 index
index++;
});
index = 0
for item in collection:
# 在此处使用 index
index += 1
int index = 0;
for (Object item : collection) {
// 在此处使用 index
index++;
}
在这些示例中,我们使用了其他循环结构,如 for
循环,并手动递增索引变量以跟踪当前迭代。在某些编程语言中,例如 Python,可以使用内置的 enumerate()
函数,该函数返回一个可枚举对象,其中包含当前迭代的索引和值。
for index, item in enumerate(collection):
# 在此处使用 index
请注意,这些示例中的代码片段仅用于演示目的,可能需要根据实际情况进行调整。
领取专属 10元无门槛券
手把手带您无忧上云