书栈网 · BookStack 本次搜索耗时 0.065 秒,为您找到 3431 个相关结果.
  • 3.12 Context Events

    3.12 Context Events Publishing Events Listening for Events 3.12 Context Events Micronaut supports a general event system through the context. The ApplicationEventPublisher A...
  • functools —- 高阶函数和可调用对象上的操作

    functools —- 高阶函数和可调用对象上的操作 partial 对象 functools —- 高阶函数和可调用对象上的操作 源代码: Lib/functools.py functools 模块应用于高阶函数,即参数或(和)返回值为其他函数的函数。 通常来说,此模块的功能适用于所有可调用对象。 functools 模块定义...
  • 13.13 用RecyclerView 来展示待办事项

    1007 2019-03-05 《Kotlin极简教程》
    13.13 用RecyclerView 来展示待办事项 13.13 用RecyclerView 来展示待办事项 下面我们来实现这个页面。 首先,这个是主页面,对应 activity_main.xml 视图, 文件内容如下: <? xml version = "1.0" encoding = "utf-8" ?> <android.sup...
  • Kotlin入门和使用

    1472 2020-05-28 《Kotlin 基础教程》
    Kotlin入门和使用 Intro Java 有哪些问题? Features Kotlin 有几个核心的目标: Kotlin的特性 Syntax Variables 类型声明 类型推导 Define Function 定义函数 If Expressions If表达式 Loop FOR循环 When When语句和表达式 R...
  • 聚合操作

    聚合操作 fold 与 reduce 聚合操作 Kotlin 集合包含用于常用的 聚合操作 (基于集合内容返回单个值的操作)的函数 。 其中大多数是众所周知的,并且其工作方式与在其他语言中相同。 minOrNull() 与 maxOrNull() 分别返回最小和最大的元素。 On empty collections, they return ...
  • WebSockets

    WebSockets Installing Usage Usage as an suspend actor Usage as a Channel Interface The WebSocketSession interface The Frame interface Testing FAQ Standard Events: onConnect...
  • Simplified Hibernate ORM with Panache and Kotlin

    716 2021-07-08 《Quarkus v1.7 Guides》
    Quarkus - Simplified Hibernate ORM with Panache and Kotlin First: an example Using the repository pattern Defining your entity Defining your repository Most useful operations ...
  • 7.11 data 数据类

    1357 2019-03-05 《Kotlin极简教程》
    7.11 data 数据类 7.11.1 构造函数中的 val/var 7.11.2 领域实体类 7.11.3 数据类 data class 的概念 7.11.4 数据类的限制 7.11.5 数据类的解构 7.11.6 标准数据类Pair 和Triple 7.11 data 数据类 7.11.1 构造函数中的 val/var ...
  • 3.12 Context Events

    3.12 Context Events Publishing Events Listening for Events 3.12 Context Events Micronaut supports a general event system through the context. The ApplicationEventPublisher A...
  • 过滤集合

    过滤集合 按谓词过滤 划分 检验谓词 过滤集合 过滤是最常用的集合处理任务之一。在Kotlin中,过滤条件由 谓词 定义——接受一个集合元素并且返回布尔值的 lambda 表达式, 其返回值含义:true 说明给定元素与谓词匹配,false 则表示不匹配。 标准库包含了一组让你能够通过单个调用就可以过滤集合的扩展函数。 这些函数不会改变原始...