上一页 1 ··· 177 178 179 180 181 182 183 184 185 ··· 498 下一页
摘要: onErrorResumeNext Will subscribe to each observable source it is provided, in order. If the source it's subscribed to emits an error or completes, it 阅读全文
posted @ 2020-10-14 03:17 Zhentiw 阅读(166) 评论(0) 推荐(0)
摘要: import { fromEvent, timer } from 'rxjs'; import { throwIfEmpty, takeUntil } from 'rxjs/operators'; const click$ = fromEvent(document, 'click'); click$ 阅读全文
posted @ 2020-10-14 03:05 Zhentiw 阅读(129) 评论(0) 推荐(0)
摘要: import java.util.* fun main(args: Array<String>) { val number = Random().nextInt(100) + 1 var input: String? var guess = -1 while(guess!=number) { pri 阅读全文
posted @ 2020-10-14 02:54 Zhentiw 阅读(127) 评论(0) 推荐(0)
摘要: //vararg: just like ...args in js class Stack<T>(vararg val items: T) { val elements = items.toMutableList() fun push(element: T) { elements.add(eleme 阅读全文
posted @ 2020-10-14 02:46 Zhentiw 阅读(105) 评论(0) 推荐(0)
摘要: //vararg: just like ...args in js class Stack<T>(vararg val items: T) { val elements = items.toMutableList() fun push(element: T) { elements.add(eleme 阅读全文
posted @ 2020-10-14 02:40 Zhentiw 阅读(53) 评论(0) 推荐(0)
摘要: In this lesson, we create a face for a head using layered comma-separated background images. CSS allows us to layer as many background images as we wa 阅读全文
posted @ 2020-10-14 02:21 Zhentiw 阅读(83) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-10-14 01:54 Zhentiw 阅读(81) 评论(0) 推荐(0)
摘要: private protected internal: accessable for the project / module public https://kotlinlang.org/docs/reference/visibility-modifiers.html 阅读全文
posted @ 2020-10-13 02:33 Zhentiw 阅读(73) 评论(0) 推荐(0)
摘要: import java.util.* class Animal { var age = 0 get() = field set(value) { if(value >= 0) { field = value } else { throw Error("bad number") } } } fun m 阅读全文
posted @ 2020-10-13 02:27 Zhentiw 阅读(101) 评论(0) 推荐(0)
摘要: enum class Color { RED, GREEN, BLUE } fun main() { println(Color.GREEN) // GREEN } Or give enum a value: enum class Color { RED(0xFF0000), GREEN(0x00F 阅读全文
posted @ 2020-10-12 15:04 Zhentiw 阅读(91) 评论(0) 推荐(0)
上一页 1 ··· 177 178 179 180 181 182 183 184 185 ··· 498 下一页