作用
Skip操作符可以说是上一篇Take操作符的兄弟
suppress the first n items emitted by an Observable
去掉被观察者里面的前n个item再发射事件(就是跳过前n个item,发射剩下的item)
示例用法
Observable.just(1, 2, 3, 4, 5)
// Run on a background thread
.subscribeOn(Schedulers.io())
// Be notified on the main thread
.observeOn(AndroidSchedulers.mainThread())
.skip(2)//->skip操作符,跳过前两个
.subscribe(getObserver());//这里的观察者依然不重要
运行结果
3,4,5
分析
我们创建了一个会发送1~5 五个item的被观察者
然后用操作符skip,里面的参数为2,即跳过了前两个
最后,我们从观察者中拿到的item为3,4,5
总结
这个系列只有干货,如果大家有什么好的建议的话欢迎在下面评论。或者觉得我哪里写的不够形象了,同样可以提出来。
网友评论