Programação Dart - Removendo itens da lista
As seguintes funções são suportadas pela classe List no dart: a biblioteca principal pode ser usada para remover o (s) item (ns) em uma Lista.
List.remove ()
A função List.remove () remove a primeira ocorrência do item especificado na lista. Esta função retorna verdadeiro se o valor especificado for removido da lista.
Sintaxe
List.remove(Object value)
Onde,
value - representa o valor do item que deve ser removido da lista.
Os seguintes example mostra como usar esta função -
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}');
}
Ele produzirá a seguinte saída -
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 ()
o List.removeAt função remove o valor no índice especificado e o retorna.
Sintaxe
List.removeAt(int index)
Onde,
index - representa o índice do elemento que deve ser removido da lista.
Os seguintes example mostra como usar esta função -
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}');
}
Ele produzirá a seguinte saída -
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 ()
o List.removeLast()A função aparece e retorna o último item da lista. A sintaxe para o mesmo é fornecida abaixo -
List.removeLast()
Os seguintes example mostra como usar esta função -
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}');
}
Ele produzirá a seguinte saída -
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 ()
o List.removeRange()função remove os itens dentro do intervalo especificado. A sintaxe para o mesmo é fornecida abaixo -
List.removeRange(int start, int end)
Onde,
Start - representa a posição inicial para remover os itens.
End - representa a posição na lista para parar de remover os itens.
O exemplo a seguir mostra como usar esta função -
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}');
}
Ele produzirá a seguinte saída -
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]