Dart 列表list

List只是一组有序的对象。该 dart:core 库提供的列表类,使创建和列表的操作。

Dart中的列表可归类为

  • 固定长度列表 - 列表的长度在运行时不能更改。
  • 可增长列表 - 列表的长度可以在运行时更改。

 

范例

下面给出了一个Dart实现List的例子。

void main() {
   List logTypes = new List();
   logTypes.add("WARNING");
   logTypes.add("ERROR");
   logTypes.add("INFO");  

   // iterating across list
   for(String type in logTypes){
      print(type);
   }

   // printing size of the list
   print(logTypes.length);
   logTypes.remove("WARNING");

   print("size after removing.");
   print(logTypes.length);
}

上述代码的 输出:

WARNING
ERROR
INFO
3
size after removing.
2

Set表示对象的集合,其中每个对象只能出现一次,dart:core库提供了Set类。语法Identifier = new Set()或者Identifier = new Set.from(Iterable)其中, It ...