Mục lục bài viết
Cập Nhật: 2022-01-01 17:56:07,You Cần tương hỗ về Flutter initialize list. Bạn trọn vẹn có thể lại Báo lỗi ở cuối bài để Admin đc lý giải rõ ràng hơn.
To initialize a list of a specific length we have two constructors List.filled() and List.generate( ). The List.filled( ) is used to create a list of specific length and fill a particular value at each position. And the List.generate( ) is used to create a list of specific length and at each position, it fills a value returned by a callback function.
Tóm lược đại ý quan trọng trong bài
Contents
The List.filled( ) constructor takes the length as the first parameter and the value to be filled as the second parameter and as a third parameter it takes a map whose key name is growable and its value will be defined by you which is a boolean. By default the growable is false.
List a = List.filled(10, 0);
print(a);
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
The List.generate( ) constructor is used to creating a list whose items are logically created using a callback function. This function takes three arguments the first is length and second is the callback function and the third is the map.
In this example, we are creating a list whose elements are the square of their own index number.
List a = List.generate(10, (index) => index * index);
print(a);
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
Reply
6
0
Chia sẻ
– Một số Keywords tìm kiếm nhiều : ” đoạn Clip hướng dẫn Flutter initialize list tiên tiến và phát triển nhất , Share Link Cập nhật Flutter initialize list “.
Bạn trọn vẹn có thể để lại Comments nếu gặp yếu tố chưa hiểu nghen.
#Flutter #initialize #list