当前位置:网站首页>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 implementation of kindergarten management system
- 单项框 复选框
- Android advanced interview question record in 2022
- d3js小记
- Apache Web page security optimization
- Comparison of advantages and disadvantages between platform entry and independent deployment
- Design and implementation of community hospital information system
- Asp+access campus network goods trading platform
- The database and recharge are gone
- Moco V2 literature research [self supervised learning]
猜你喜欢
Android advanced interview question record in 2022
Flume配置4——自定义MYSQLSource
Simple use of devtools
Learn game model 3D characters, come out to find a job?
[download white paper] does your customer relationship management (CRM) really "manage" customers?
Design and practice of kubernetes cluster and application monitoring scheme
2021 Li Hongyi machine learning (3): what if neural network training fails
Chinese natural language processing, medical, legal and other public data sets, sorting and sharing
Yuan universe also "real estate"? Multiple second-hand trading websites block metauniverse keywords
Design and implementation of high availability website architecture
随机推荐
Azkaban installation and deployment
Utilisation simple de devtools
Spark SQL learning bullet 2
Master Fur
[micro service SCG] 33 usages of filters
【LeetCode】98. Verify the binary search tree (2 brushes of wrong questions)
Asp+access campus network goods trading platform
Hmi-30- [motion mode] the module on the right side of the instrument starts to write
ELFK部署
Qrcode: generate QR code from text
【LeetCode】222. The number of nodes of a complete binary tree (2 mistakes)
Design and implementation of kindergarten management system
The perfect car for successful people: BMW X7! Superior performance, excellent comfort and safety
Breaking the information cocoon - my method of actively obtaining information - 3
Android advanced interview question record in 2022
From task Run get return value - getting return value from task Run
PHP cli getting input from user and then dumping into variable possible?
openresty ngx_lua变量操作
openresty ngx_lua執行階段
Scientific research: are women better than men?