lastIndexOf 抽象方法
- E element,
- [int? start]
此列表中element
的最后一个索引。
从索引start
开始向列表末尾搜索。
第一次遇到对象o
使得o == element
时,返回o
的索引。
final notes = <String>['do', 're', 'mi', 're'];
const startIndex = 2;
final index = notes.lastIndexOf('re', startIndex); // 1
如果未提供start
,则此方法从列表末尾开始搜索。
final notes = <String>['do', 're', 'mi', 're'];
final index = notes.lastIndexOf('re'); // 3
如果未找到element
,则返回-1。
final notes = <String>['do', 're', 'mi', 're'];
final index = notes.lastIndexOf('fa'); // -1
实现
int lastIndexOf(E element, [int? start]);