书栈网 · BookStack 本次搜索耗时 0.029 秒,为您找到 3431 个相关结果.
  • 属性委托

    属性委托 标准委托 延迟属性 Lazy properties 可观察属性 Observable properties 委托给另一个属性 将属性储存在映射中 局部委托属性 属性委托要求 Translation rules for delegated properties Optimized cases for delegated properti...
  • Content Negotiation

    Content conversion based on Content-Type and Accept headers Basic Usage Sending Receiving The ContentConverter interface Available out of the box ContentConverter Content ...
  • 8.2.14 具体化的类型参数

    786 2019-03-06 《Kotlin极简教程》
    8.2.14 具体化的类型参数 8.2.14 具体化的类型参数 有时候我们需要访问一个参数类型: fun < T > TreeNode . findParentOfType ( clazz : Class < T >): T ? { var p = parent while ( p != ...
  • 类与继承

    类与继承 类 构造函数 次构造函数 创建类的实例 类成员 继承 覆盖方法 覆盖属性 派生类初始化顺序 调用超类实现 覆盖规则 抽象类 伴生对象 类与继承 类 Kotlin 中使用关键字 class 声明类 class Invoice { /*……*/ } 类声明由类名、类头(指定其类型参数、主构造...
  • 内联函数

    内联函数 noinline 非局部返回 具体化的类型参数 内联属性 公有 API 内联函数的限制 内联函数 使用高阶函数 会带来一些运行时的效率损失:每一个函数都是一个对象,并且会捕获一个闭包。 闭包那些在函数体内会访问到的变量的作用域。 内存分配(对于函数对象和类)和虚拟调用会引入运行时间开销。 但是在许多情况下通过内联化 lambda ...
  • Bindable Types

    Bindable Types Bindable Types Generally any type that can be converted from a String representation to a Java type via the ConversionService API can be bound to. This include...
  • 嵌套类

    嵌套类与内部类 内部类 匿名内部类 嵌套类与内部类 类可以嵌套在其他类中: class Outer { private val bar : Int = 1 class Nested { fun foo () = 2 } } val d...
  • Bindable Types

    Bindable Types Bindable Types Generally any type that can be converted from a String representation to a Java type via the ConversionService API can be bound to. This include...
  • Bindable Types

    Bindable Types Bindable Types Generally any type that can be converted from a String representation to a Java type via the ConversionService API can be bound to. This include...
  • 集合转换操作

    集合转换操作 映射 合拢 关联 展平 字符串表示 集合转换操作 Kotlin 标准库为集合 转换 提供了一组扩展函数。 这些函数根据提供的转换规则从现有集合中构建新集合。 在此页面中,我们将概述可用的集合转换函数。 映射 映射 转换从另一个集合的元素上的函数结果创建一个集合。 基本的映射函数是 map() 。 它将给定的 lambda 函...