2020
10-10
10-10
Flutter List数组避免插入重复数据的实现
List具有一定长度存在索引的对象集合(长度为0不存在索引,长度>0存在索引)常见列表1、定长列表默认值null例如:List<int>fixedLengthList=newList(2)、List<int>fixedLengthList=newList(8)List<int>fixedLengthList=newList(2);for(inti=0;i<2;i++){print("索引为${i}的值${fixedLengthList[i]}");}I/flutter(9251):索引为0的值nullI/flutter(9251):索引为1的值null固定长度不可修改 List<int>fixedLeng...
继续阅读 >