书栈网 · BookStack 本次搜索耗时 0.048 秒,为您找到 3399 个相关结果.
  • 8.2.2 扩展函数

    851 2019-03-06 《Kotlin极简教程》
    8.2.2 扩展函数 8.2.2 扩展函数 通过 扩展 声明完成一个类的新功能 扩展 ,而无需继承该类或使用设计模式(例如,装饰者模式)。 一个扩展String类的swap函数的例子: fun String . swap ( index1 : Int , index2 : Int ): String { va...
  • enum

    enum enum An enum declaration inside a lib declares a C enum: lib X # In C: # # enum SomeEnum { # Zero, # One, # Two, # Three,...
  • Collecting Metrics

    Collecting Metrics Before you begin Collecting new metrics Understanding the metrics configuration Cleanup 相关内容 Collecting Metrics This task shows how to configure Istio t...
  • 11.4  Exit Reasons

    11.4 Exit Reasons 11.4 Exit Reasons When a run-time error occurs, that is an exception of class error. The exit reason is a tuple {Reason,Stack}, where Reason is a term indic...
  • 在UI中绘制数据

    在UI中绘制数据 在UI中绘制数据 MainActivity 中的代码有些小的改动,因为现在有真实的数据需要填充到adapter中。异步调用需要被重写成: async () { val result = RequestForecastCommand ( "94043" ). execute () uiThread ...
  • Kotlin 1.4

    Kotlin 1.4.0 的新特性 语言特性与改进 Kotlin 接口的 SAM 转换 面向库作者的显式 API 模式 混用具名与位置参数 拖尾的逗号 可调用引用改进 对具有默认参数值的函数的引用 可作为返回 Unit 的函数的函数引用 根据函数的参数数量进行调整的引用 可调用引用的挂起转换 在循环中的 when 内部使用 break ...
  • 集合

    Java 与 Kotlin 中的集合 在 Java 与 Kotlin 中相同的操作 对 list、 set、 queue 与 deque 的操作 对 map 的操作 仅针对 list 的操作 略有不同的操作 对任意集合类型的操作 对 list 的操作 Java 标准库中不存在的操作 可变性 协变性 区间与数列 按照多个维度比较 序列 ...
  • 字符串

    字符串 字符串字面值 转义字符串 多行字符串 字符串模板 字符串 Kotlin 中字符串用 String 类型表示。 通常,字符串值是双引号(" )中的字符序列: val str = "abcd 123" 字符串的元素——字符可以使用索引运算符访问: s[i] 。 可以使用 for 循环遍历这些字符: fun main ()...
  • Qualifying By Annotation Members

    Qualifying By Annotation Members Qualifying By Annotation Members Since Micronaut 3.0, annotation qualifiers can also use annotation members to resolve the correct bean to injec...
  • 生产操作符

    882 2020-05-28 《Kotlin 基础教程》
    生产操作符 zip(other: Iterable<R>): List<Pair<T, R>> unzip(): Pair<List<T>, List<R>> partition(predicate: (T) -> Boolean): Pair<List<T>, List<T>> plus(elements: Iterable<T>): List...