书栈网 · BookStack 本次搜索耗时 0.036 秒,为您找到 3431 个相关结果.
  • Aggregate Operations

    Collection Aggregate Operations Fold and reduce Collection Aggregate Operations Kotlin collections contain functions for commonly used aggregate operations – operations that r...
  • 3.7 Bean Factories

    3.7 Bean Factories Programmatically Disabling Beans Injection Point 3.7 Bean Factories In many cases, you may want to make available as a bean a class that is not part of you...
  • 代理模式

    代理 类代理 代理 类代理 代理模式 给实现继承提供了很好的代替方式, Kotlin 在语法上支持这一点,所以并不需要什么样板代码。Derived 类可以继承 Base 接口并且指定一个对象代理它全部的公共方法: interface Base { fun print () } class BaseI...
  • 10.22 可见性

    673 2019-03-05 《Kotlin极简教程》
    可见性 可见性 Kotlin 的可见性与Java的可见性的映射关系如下表所示: Kotlin中的声明 Java中的声明 private private protected protected internal public public public 例如下面的Kotlin代码: class ...
  • JavaScript Modules

    JavaScript Modules Targeting the browser Creating JavaScript libraries and Node.js files Choosing the target module system @JsModule annotation Applying @JsModule to packages ...
  • 13.11 添加日程界面

    1331 2019-03-05 《Kotlin极简教程》
    13.11 添加日程界面 13.11 添加日程界面 下面我们来完成这个添加日程的界面。 我们采用Fragment来实现。首先新建一个TodoEditFragment继承Fragment() : class TodoEditFragment : Fragment () { val realm : Realm ...
  • 6.8 Response Status

    6.8 Response Status 6.8 Response Status A Micronaut’s controller action responds with a 200 HTTP status code by default. If the controller’s action returns a HttpResponse obj...
  • Understanding continuations

    seriesOrder: 2 Continuations Continuation examples Continuation passing style Continuations and ‘let’ Wrapping the continuation in a function The “logging” example revisited ...
  • 迭代器

    迭代器 List 迭代器 可变迭代器 迭代器 对于遍历集合元素, Kotlin 标准库支持 迭代器 的常用机制——对象可按顺序提供对元素的访问权限,而不会暴露集合的底层结构。 当需要逐个处理集合的所有元素(例如打印值或对其进行类似更新)时,迭代器非常有用。 Iterable<T> 接口的继承者(包括 Set 与 List )可以通过调用 ...
  • 迭代器

    迭代器 List 迭代器 可变迭代器 迭代器 对于遍历集合元素, Kotlin 标准库支持 迭代器 的常用机制—— 对象可按顺序提供对元素的访问权限,而不会暴露集合的底层结构。 当需要逐个处理集合的所有元素(例如打印值或对其进行类似更新)时, 迭代器非常有用。 Iterable 接口的继承者 (包括 Set 与 List )可以通过调用 it...