Dart 编程 - 更新列表


更新索引

Dart 允许修改列表中项目的值。换句话说,可以重写列表项的值。下面的例子说明了同样的情况 -

void main() { 
   List l = [1, 2, 3,]; 
   l[0] = 123;
   print (l);
}

上面的示例更新了索引为 0 的列表项的值。代码的输出将是 -

[123, 2, 3]

使用 List.replaceRange() 函数

dart:core 库中的 List 类提供了ReplaceRange()函数来修改列表项。该函数替换指定范围内的元素值。

使用 List.replaceRange() 函数的语法如下 -

List.replaceRange(int start_index,int end_index,Iterable <items>)

在哪里,

  • Start_index - 表示开始替换的索引位置的整数。

  • End_index - 表示要停止替换的索引位置的整数。

  • <items> - 表示更新值的可迭代对象。

下面的例子说明了同样的情况 -

现场演示
void main() {
   List l = [1, 2, 3,4,5,6,7,8,9];
   print('The value of list before replacing ${l}');
   
   l.replaceRange(0,3,[11,23,24]);
   print('The value of list after replacing the items between the range [0-3] is ${l}');
}

它应该产生以下输出-

The value of list before replacing [1, 2, 3, 4, 5, 6, 7, 8, 9]
The value of list after replacing the items between the range [0-3] is [11, 23, 24, 4, 5, 6, 7, 8, 9]
dart_programming_lists_basic_operations.htm