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

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

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

void main(){
  //创建Stream,跳过指定个数元素
  testSkip();
}

void testSkip() async {
  //时间间隔为1秒
  Duration interval = Duration(seconds: 1);
  //每隔1秒发送1次的事件流
  Stream
  
    stream = Stream.periodic(interval, (data) => data);
  //指定发送事件次数
  stream = stream.take(10);
  //跳过前两个元素
  stream = stream.skip(2);
  //输出Stream
  await for (int i in stream) {
    print(i);
  }
}

  
  • ダーツ交換グループ:1046954554
  • Flutterオープンソースプロジェクトに注意してください:https//github.com/kangshaojun

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

'

おすすめ

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