目录正文封装一个SafeList测试一下正文 最近遇到一些列表的错误,例如,列表为空时直接调用方法会报错。 一般都会在使用前判断列表是否为空,再使用。 虽然Flutter提供了N
最近遇到一些列表的错误,例如,列表为空时直接调用方法会报错。
一般都会在使用前判断列表是否为空,再使用。
虽然Flutter提供了Null safety,但是用的时候还是会忘记或者忽略,直接使用'!'来跳过非空判断。
代码如下:
class SafeList<T> extends ListBase<T> {
final List<T> _list;
final T defaultValue;
final T absentValue;
SafeList({
required this.defaultValue,
required this.abssentValue,
List<T>? values,
}) : _list = values ?? [];
@override
T operator [](int index) => index < _list.length ? _list[index] : absentValue;
@override
void operator []=(int index, T value) => _list[index] = value;
@override
int get length => _list.length;
@override
T get first => _list.isNotEmpty ? _list.first : absentValue;
@override
T get last => _list.isNotEmptu ? _list.last : absentValue;
@override
set length(int newValue) {
if (newValue < _list.length) {
_list.length = newValue;
} else {
_list.addAll(List.filled(newValue - _list.length, defaultValue));
}
}
}
void main() {
const notFound = 'NOT_FOUND';
const defaultString = '';
final MyList = SafeList(
defaultValue: defaultString,
absentValue: notFount,
values: ['Bar', 'Baz'],
);
print(myList[0]);// Bar
print(myList[1]);// Baz
print(myList[2]);// NOT_FOUND
myList.length = 4;
print(myList[3]);// ''
myList.length = 0;
print(myList.first);// NOT_FOUND
print(myList.last);// NOT_FOUND
}
有时胡乱思考的一个小tips,如有更好的建议欢迎留言共同进步。
以上就是SafeList in Flutter and dart小技巧的详细内容,更多关于SafeList Flutter Dart的资料请关注编程网其它相关文章!
--结束END--
本文标题: SafeList in Flutter and Dart小技巧
本文链接: https://lsjlt.com/news/174594.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-21
2023-10-28
2023-10-28
2023-10-27
2023-10-27
2023-10-27
2023-10-27
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0