1
Bagaimana cara menutup cek nol yang tidak perlu yang dihasilkan oleh Kotlin?
Pertimbangkan contoh Kotlin minimal berikut: fun <U> someWrapper(supplier: () -> U): () -> (U) { return { supplier() } } fun foo(taskExecutor: TaskExecutor): Int { val future = CompletableFuture.supplyAsync(someWrapper { 42 }, taskExecutor::execute) return future.join() } @Test public void shouldFoo() { assertThat(foo(), is(42)); } Saya memiliki aturan cakupan cabang di …