Dart list replaceRange()
更新索引
Dart允许修改List中项目的值。换句话说,可以重写列表项的值。
范例
void main() { List l = [1, 2, 3,]; 1[0] = 123; print (1); }
上面的示例使用索引0更新List项的值。
它产生以下 输出:
[123, 2, 3]
使用List.replaceRange()函数
dart:core库中的List类提供了 replaceRange() 函数来修改List项。此函数替换指定范围内的元素的值。
使用List.replaceRange()函数的语法:
List.replaceRange(int start_index,int end_index,Iterable <items>)
这里:
- Start_index - 表示要开始替换的索引位置的整数。
- End_index - 表示要停止替换的索引位置的整数。
- - 表示更新值的可迭代对象。
范例
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:core库中List类支持的以下函数可用于删除List中的项目。 List.remove()List.remove()函数删除列表中第一次出现的指定项。如果从列表中删除指定的值,则此 ...