Categories: Thủ Thuật Mới

Video Flutter initialize list Chi tiết

Mục lục bài viết

Mẹo về Flutter initialize list 2022

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

  • Using List.filled( )
  • Using List.generate( )

Contents

  • 1 Using List.filled( )
    • 1.1 Example:
    • 1.2 Output:
  • 2 Using List.generate( )
    • 2.1 Example:
    • 2.2 Output:

Using List.filled( )

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.

Example:

List a = List.filled(10, 0);
print(a);

Output:

[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]

Using List.generate( )

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.

Example:

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);

Output:

[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]

Reply
6
0
Chia sẻ

Review Share Link Down Flutter initialize list ?

– 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 “.

Hỏi đáp vướng mắc về 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

Phương Bách

Published by
Phương Bách