1
Làm thế nào để bao gồm kiểm tra null không cần thiết được tạo ra bởi Kotlin?
Hãy xem xét ví dụ về Kotlin tối thiểu sau đây: 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)); } …