第18章非同期プログラミング-stream_to_list

反収集マーク:カン・シャオジュン先生のコースと資料

//stream_to_list.dart文件
import 'dart:async';

void main(){
  //创建Stream,将流中的数据放在List里
  testToList();
}

void testToList() async {
  //时间间隔为1秒
  Duration interval = Duration(seconds: 1);
  //每隔1秒发送1次的事件流
  Stream
  
    stream = Stream.periodic(interval, (data) => data);
  //指定发送事件个数
  stream = stream.take(10);
  //将流中所有的数据收集存放在List中
  List
   
     listData = await stream.toList();
  //输出List数据
  for(int i in listData){
    print(i);
  }
}
   
  
  • ダーツ交換グループ:1046954554
  • Flutterオープンソースプロジェクトに注意してください:https//github.com/kangshaojun

@作者:カン・シャオジュン

'

おすすめ

転載: blog.csdn.net/kangshaojun888/article/details/104542196