书栈网 · BookStack 本次搜索耗时 0.033 秒,为您找到 3399 个相关结果.
  • Type Checks and Casts

    Type Checks and Casts: ‘is’ and ‘as’ is and !is Operators Smart Casts “Unsafe” cast operator “Safe” (nullable) cast operator Type erasure and generic type checks Unchecked c...
  • Kotlin 1.7.20

    Kotlin 1.7.20 的新特性 支持 Kotlin K2 编译器插件 如何启用 Kotlin K2 编译器 请反馈关于新版 K2 编译器的问题 语言 用于创建前闭后开区间的 ..< 操作符预览版 标准库 API 变更 新接口 OpenEndRange 在现有可迭代区间中实现 OpenEndRange 标准类型的 rangeUntil 运算符 ...
  • Populating Headers Using Configuration

    Populating Headers Using Configuration Populating Headers Using Configuration The @Header annotation can be declared at the type level and is repeatable such that it is possib...
  • Populating Headers Using Configuration

    Populating Headers Using Configuration Populating Headers Using Configuration The @Header annotation can be declared at the type level and is repeatable such that it is possib...
  • When The Context Starts

    When The Context Starts When The Context Starts If you wish for a particular method to be invoked when a bean is constructed then you can use the javax.annotation.PostConstruct...
  • 6.18 API Versioning

    6.18 API Versioning Default Version Versioning Client Requests 6.18 API Versioning Since 1.1.x, Micronaut supports API versioning via a dedicated @Version annotation. The fo...
  • Testing

    Testing note TestEngine Building post/put bodies application/x-www-form-urlencoded multipart/form-data Defining configuration properties in tests HttpsRedirect feature Test...
  • 11.7 数据访问层代码

    1009 2019-03-05 《Kotlin极简教程》
    11.7 数据访问层代码 11.7.1 原生SQL查询 11.7.2 模糊查询like写法 11.7.3 参数占位符 11.7.4 JP QL中的SpEL 11.7.5 注解参数 11.7 数据访问层代码 在Spring Data JPA中,我们只需要实现接口CrudRepository<T, ID> 即可获得一个拥有基本CRUD操作的接口...
  • 9.1 协程简介

    2703 2019-03-05 《Kotlin极简教程》
    9.1 协程简介 9.1.1 搭建协程代码工程 9.1.2 简单协程示例 9.1.3 launch函数 9.1.4 CommonPool:共享线程池 9.1.5 挂起函数 9.1 协程简介 从硬件发展来看,从最初的单核单CPU,到单核多CPU,多核多CPU,似乎已经到了极限了,但是单核CPU性能却还在不断提升。如果将程序分为IO密集型应用...
  • 8. 模块 - Modules

    模块 编译 脚本模式 具名函数 函数捕获 默认参数 模块 1. 编译 2. 脚本模式 3. 具名函数 4. 函数捕获 5. 默认参数 在Elixir中我们将一些函数集合到模块里。在之前的章节里我们已经使用了许多不同的模块,例如String 模块: iex > String . length (...