什么是单身<Int>!以及如何实例化一个变量
What is a Single<Int>! and how can I instantiate a variable as it
我正在尝试解决一些测试问题,但出现错误:
The integer literal does not conform to the expected type Single!
我从未使用过 Single<>,而且我一直无法找到如何在 Kotlin 中将变量实例化为一个变量。
发现Single是来自Reactivex的class,创建变量的方式为单身是:
Single.just(1)
您可以将“1”替换为您想要的变量。
我正在尝试解决一些测试问题,但出现错误:
The integer literal does not conform to the expected type Single!
我从未使用过 Single<>,而且我一直无法找到如何在 Kotlin 中将变量实例化为一个变量。
发现Single是来自Reactivex的class,创建变量的方式为单身是:
Single.just(1)
您可以将“1”替换为您想要的变量。