当前位置:网站首页>Dart series: collection of best practices
Dart series: collection of best practices
2022-07-05 02:47:00 【Procedures, those things】
brief introduction
dart There are four sets in , Namely Set,List,Map and queues. What should we pay attention to when using these sets ? What kind of use is the best way to use it ? Let's see .
Create a collection with literal
For commonly used Set,Map and List For three sets , They have their own parameterless constructors :
factory Set() = LinkedHashSet<E>;
external factory Map();
@Deprecated("Use a list literal, [], or the List.filled constructor instead")
external factory List([int? length]);
You can see Set and Map You can use constructors . But for List Come on , Parameterless constructors are no longer recommended .
about Set and Map Come on , It can be structured like this :
var studentMap = Map<String, Student>();
var ages = Set<int>();
however dart The official recommendation is to use literal values directly to create these collections , As shown below :
var studentMap = <String, Student>{};
var ages = <int>{};
Why? ? This is because dart The literal set in is very powerful . You can extend the operator ,if and for Statement to construct and extend a collection , As shown below :
var studentList = [
...list1,
student1,
...?list2,
for (var name in list3)
if (name.endsWith('jack'))
name.replaceAll('jack', 'mark')
];
Do not use .length To determine if the set is empty
Corresponding dart For the ergodic set of , These sets do not store the length information of the set , So if you call the of the collection .length Method , It may lead to traversal of the collection , Which affects performance .
Be careful Set and List It's ergodic , and Map It's not ergodic .
therefore , We need to call the... Of the collection .isEmpty and .isNotEmpty Method to determine whether the collection is empty , It's faster .
if (studentList.isEmpty) print('it is empty');
if (studentList.isNotEmpty) print('it is not empty');
Traversal of traversable objects
Corresponding Set and List For these two traversable sets , There are two ways to traverse , You can call forEach() Methods or for-in Let's do the traversal , As shown below :
for (final student in studentList) {
...
}
studentList.forEach((student) {
...
});
Of these two methods ,dart Recommended for in Writing .
Of course , If you want to put the existing function Apply to each element in the collection ,forEach It's OK, too :
studentList.forEach(print);
Be careful , because Map It's not ergodic , So the above rule is right Map Not applicable .
List.from and iterable.toList
Traversable objects can be accessed by calling toList Turn it into List, alike List.from You can also convert traversable objects into List.
So what's the difference between the two ?
var list1 = iterable.toList();
var list2 = List.from(iterable);
The difference between the two iterable.toList It doesn't change list The type of data in , and List.from Meeting . for instance :
// Creates a List<String>:
var studentList = ['jack', 'mark', 'alen'];
// Prints "List<String>":
print(studentList.toList().runtimeType);
// Prints "List<dynamic>":
print(List.from(studentList).runtimeType);
Of course , You can also use List
List<String>.from(studentList)
where and whereType
For traversable objects , Two methods of filtering elements in a collection , They are where and whereType.
such as , We need to filter List String in , You can write like this :
var studentList = ['jack', 'ma', 18, 31];
var students1 = studentList.where((e) => e is String);
var students2 = studentList.whereType<String>();
It seems that there is not much difference between the two , Can get the results they deserve . But the two are actually different , Because it corresponds to where Come on , Back to a Iterable
边栏推荐
- Why are there fewer and fewer good products produced by big Internet companies such as Tencent and Alibaba?
- 【LeetCode】404. Sum of left leaves (2 brushes of wrong questions)
- From task Run get return value - getting return value from task Run
- Redis distributed lock, lock code logic
- The database and recharge are gone
- ELFK部署
- 腾讯云,实现图片上传
- 2.常见的请求方法
- Devtools的简单使用
- 2022/02/13
猜你喜欢

The perfect car for successful people: BMW X7! Superior performance, excellent comfort and safety

Idea inheritance relationship

Single line function*

2.常见的请求方法

Pytest (5) - assertion

Bert fine tuning skills experiment

The perfect car for successful people: BMW X7! Superior performance, excellent comfort and safety

Devtools的简单使用

Bumblebee: build, deliver, and run ebpf programs smoothly like silk

Azkaban overview
随机推荐
How to make OS X read bash_ Profile instead of Profile file - how to make OS X to read bash_ profile not . profile file
Hmi-32- [motion mode] add light panel and basic information column
Structure of ViewModel
8. Commodity management - commodity classification
Unpool(nn.MaxUnpool2d)
ELFK部署
【微服务|SCG】Filters的33种用法
Kotlin - 协程 Coroutine
Returns the lowest common ancestor of two nodes in a binary tree
Idea inheritance relationship
Tencent cloud, realize image upload
低度酒赛道进入洗牌期,新品牌如何破局三大难题?
Openresty ngx Lua Execution stage
Vb+access hotel service management system
openresty ngx_lua執行階段
Elfk deployment
Redis distributed lock, lock code logic
el-select,el-option下拉选择框
[200 opencv routines] 99 Modified alpha mean filter
The most powerful new household god card of Bank of communications. Apply to earn 2100 yuan. Hurry up if you haven't applied!