- Dart编程教程
- Dart编程 - 首页
- Dart编程 - 概述
- Dart编程 - 环境
- Dart编程 - 语法
- Dart编程 - 数据类型
- Dart编程 - 变量
- Dart编程 - 运算符
- Dart编程 - 循环
- Dart编程 - 决策
- Dart编程 - 数字
- Dart编程 - 字符串
- Dart编程 - 布尔值
- Dart编程 - 列表
- Dart编程 - 列表
- Dart编程 - 映射
- Dart编程 - 符号
- Dart编程 - Rune
- Dart编程 - 枚举
- Dart编程 - 函数
- Dart编程 - 接口
- Dart编程 - 类
- Dart编程 - 对象
- Dart编程 - 集合
- Dart编程 - 泛型
- Dart编程 - 包
- Dart编程 - 异常
- Dart编程 - 调试
- Dart编程 - Typedef
- Dart编程 - 库
- Dart编程 - 异步
- Dart编程 - 并发
- Dart编程 - 单元测试
- Dart编程 - HTML DOM
- Dart编程有用资源
- Dart编程 - 快速指南
- Dart编程 - 资源
- Dart编程 - 讨论
Dart编程 - 删除列表项
dart:core库中List类支持以下函数,可用于删除List中的项。
List.remove()
List.remove()函数删除列表中指定项的第一次出现。如果从列表中删除了指定值,则此函数返回true。
语法
List.remove(Object value)
其中,
value − 表示应从列表中删除的项的值。
以下示例演示了如何使用此函数:
void main() { List l = [1, 2, 3,4,5,6,7,8,9]; print('The value of list before removing the list element ${l}'); bool res = l.remove(1); print('The value of list after removing the list element ${l}'); }
它将产生以下输出:
The value of list before removing the list element [1, 2, 3, 4, 5, 6, 7, 8, 9] The value of list after removing the list element [2, 3, 4, 5, 6, 7, 8, 9]
List.removeAt()
List.removeAt函数删除指定索引处的值并将其返回。
语法
List.removeAt(int index)
其中,
index − 表示应从列表中删除的元素的索引。
以下示例演示了如何使用此函数:
void main() { List l = [1, 2, 3,4,5,6,7,8,9]; print('The value of list before removing the list element ${l}'); dynamic res = l.removeAt(1); print('The value of the element ${res}'); print('The value of list after removing the list element ${l}'); }
它将产生以下输出:
The value of list before removing the list element [1, 2, 3, 4, 5, 6, 7, 8, 9] The value of the element 2 The value of list after removing the list element [1, 3, 4, 5, 6, 7, 8, 9]
List.removeLast()
List.removeLast()函数弹出并返回List中的最后一项。其语法如下所示:
List.removeLast()
以下示例演示了如何使用此函数:
void main() { List l = [1, 2, 3,4,5,6,7,8,9]; print('The value of list before removing the list element ${l}'); dynamic res = l.removeLast(); print('The value of item popped ${res}'); print('The value of list after removing the list element ${l}'); }
它将产生以下输出:
The value of list before removing the list element [1, 2, 3, 4, 5, 6, 7, 8, 9] The value of item popped 9 The value of list after removing the list element [1, 2, 3, 4, 5, 6, 7, 8]
List.removeRange()
List.removeRange()函数删除指定范围内的项。其语法如下所示:
List.removeRange(int start, int end)
其中,
Start − 表示删除项的起始位置。
End − 表示在列表中停止删除项的位置。
以下示例演示了如何使用此函数:
void main() { List l = [1, 2, 3,4,5,6,7,8,9]; print('The value of list before removing the list element ${l}'); l.removeRange(0,3); print('The value of list after removing the list element between the range 0-3 ${l}'); }
它将产生以下输出:
The value of list before removing the list element [1, 2, 3, 4, 5, 6, 7, 8, 9] The value of list after removing the list element between the range 0-3 [4, 5, 6, 7, 8, 9]
dart_programming_lists_basic_operations.htm
广告