书栈网 · BookStack 本次搜索耗时 0.023 秒,为您找到 1709 个相关结果.
  • List元素操作函数

    1281 2020-05-28 《Kotlin 基础教程》
    List元素操作函数 add remove set clear retainAll contains(element: T): Boolean elementAt(index: Int): T first() first(predicate: (T) -> Boolean): T indexOf(element: T): Int...
  • 社区

    社区 社区 贡献力量 KUG 准则 Kotlin 之夜准则
  • REFERENCE

    Reference Language-specific, automatically generated API reference documentation is available for the following languages and platforms: C++ Dart Java Kotlin Python Ruby ...
  • 函数与 Lambda 表达式

    函数与 Lambda 表达式 函数与 Lambda 表达式 . 所有函数相关的 函数 Lambda 表达式 内联函数 协程 原文: https://hltj.gitbooks.io/kotlin-reference-chinese/content/txt/functions-and-lambdas.html
  • 1.1 What’s New?

    1.1 What’s New? Core Features Support for JDK 14 Groovy 3 Startup Performance Improvements Improvements to Bean Introspections Support for Analyzing the Injection Point Suppor...
  • 基础

    基础 基础 基本语法 习惯用法 例学 Kotlin↗︎ 编码规范
  • Java

    influxdb-client-java Note: Use this client library with InfluxDB 2.x and InfluxDB 1.8+ ( see details ). For connecting to InfluxDB 1.7 or earlier instances, use the influxdb-...
  • 参考资料

    614 2019-03-05 《Kotlin极简教程》
    参考资料 参考资料 1.https://jetbrains.github.io/kotlin-spec/#_the_kotlin_nothing_type 2.http://natpryce.com/articles/000818.html
  • 可见性修饰符

    可见性修饰符 包 类和接口 构造函数 局部声明 模块 可见性修饰符 类、对象、接口、构造函数、方法、属性和它们的 setter 都可以有 可见性修饰符。 (getter 总是与属性有着相同的可见性。) 在 Kotlin 中有这四个可见性修饰符:private 、 protected 、 internal 和 public 。 如果没有显式...
  • 9.2 桥接 阻塞和非阻塞

    1426 2019-03-05 《Kotlin极简教程》
    9.2 桥接 阻塞和非阻塞 9.2.1 runBlocking函数 9.2 桥接 阻塞和非阻塞 上面的例子中,我们给出的是使用非阻塞的delay函数,同时又使用了阻塞的Thread.sleep函数,这样代码写在一起可读性不是那么地好。让我们来使用纯的Kotlin的协程代码来实现上面的 阻塞+非阻塞 的例子(不用Thread)。 9.2.1...