当前位置:网站首页>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
边栏推荐
- Design and practice of kubernetes cluster and application monitoring scheme
- The perfect car for successful people: BMW X7! Superior performance, excellent comfort and safety
- Design and implementation of campus epidemic prevention and control system based on SSM
- Hmi-31- [motion mode] solve the problem of picture display of music module
- Why is this an undefined behavior- Why is this an undefined behavior?
- Exploration of short text analysis in the field of medical and health (I)
- 问下,这个ADB mysql支持sqlserver吗?
- 使用druid連接MySQL數據庫報類型錯誤
- Azkaban安装部署
- Pytest (4) - test case execution sequence
猜你喜欢

Avoid material "minefields"! Play with super high conversion rate

this+闭包+作用域 面试题

看 TDengine 社区英雄线上发布会,听 TD Hero 聊开发者传奇故事

Scientific research: are women better than men?

Pytest (4) - test case execution sequence

2.常见的请求方法

Design and implementation of kindergarten management system

Pytest (4) - test case execution sequence

Sqoop installation

The perfect car for successful people: BMW X7! Superior performance, excellent comfort and safety
随机推荐
Pytorch register_ Hook (operate on gradient grad)
College Students' innovation project management system
Kotlin - 协程 Coroutine
Design of KTV intelligent dimming system based on MCU
Simple use of devtools
Last words record
Spoon inserts and updates the Oracle database, and some prompts are inserted with errors. Assertion botch: negative time
openresty ngx_lua变量操作
Tiny series rendering tutorial
Azkaban安装部署
Voice chip wt2003h4 B008 single chip to realize the quick design of intelligent doorbell scheme
When the low alcohol race track enters the reshuffle period, how can the new brand break the three major problems?
The perfect car for successful people: BMW X7! Superior performance, excellent comfort and safety
Eight days of learning C language - while loop (embedded) (single chip microcomputer)
8. Commodity management - commodity classification
返回二叉树中两个节点的最低公共祖先
Problem solving: attributeerror: 'nonetype' object has no attribute 'append‘
Returns the lowest common ancestor of two nodes in a binary tree
The perfect car for successful people: BMW X7! Superior performance, excellent comfort and safety
Design and implementation of community hospital information system