书栈网 · BookStack 本次搜索耗时 0.026 秒,为您找到 3399 个相关结果.
  • 继承

    继承 覆盖方法 覆盖属性 派生类初始化顺序 调用超类实现 覆盖规则 继承 在 Kotlin 中所有类都有一个共同的超类 Any ,对于没有超类型声明的类它是默认超类: class Example // 从 Any 隐式继承 Any 有三个方法:equals() 、 hashCode() 与 toString() 。因此,为...
  • 13.3.5 Coroutines Support

    13.3.5 Coroutines Support 13.3.5 Coroutines Support Kotlin coroutines allow you to create asynchronous applications with imperative style code. A Micronaut’s controller action ...
  • 13.3.5 Coroutines Support

    13.3.5 Coroutines Support 13.3.5 Coroutines Support Kotlin coroutines allow you to create asynchronous applications with imperative style code. A Micronaut’s controller action ...
  • Transformations

    Collection Transformations Mapping Zipping Association Flattening String representation Collection Transformations The Kotlin standard library provides a set of extension ...
  • HttpsRedirect

    Redirect HTTP requests to HTTPS Usage Configuration Testing XForwardedHeaderSupport trick Do not install the feature when testing or uninstall it I get an infinite redirect whe...
  • MQTT Erlang 客户端库

    MQTT Erlang 客户端库 emqtt 使用示例 emqtt MQTT 5.0 支持 MQTT Erlang 客户端库 emqtt 是开源 MQTT Broker EMQ X 官方提供的客户端库,适用于 Erlang 语言。 Erlang 生态有多个 MQTT Broker 实现,如通过插件支持 MQTT 的 RabbitMQ ,...
  • 作用域函数

    作用域函数 区别 上下文对象:this 还是 it this it 返回值 上下文对象 Lambda 表达式结果 几个函数 let with run apply also 函数选择 takeIf 与 takeUnless 作用域函数 Kotlin 标准库包含几个函数,它们的唯一目的是在对象的上下文中执行...
  • Building Blocks

    365 2020-12-10 《Build your own Lisp》
    Building Blocks Building Blocks We’ve already come up with a number of cool functions I’ve been using in the examples. One of these is our fun function that allows us to decl...
  • KSP 示例

    KSP 示例 Get all member functions Check whether a class or function is local Find the actual class or interface declaration that the type alias points to Collect suppressed names ...
  • 对象表达式和声明

    对象表达式和声明 对象表达式 对象声明 伴随对象 对象表达式和声明的区别 对象表达式和声明 有时候我们想要创建一个对当前类有一点小修改的对象,但不想重新声明一个子类。java 用匿名内部类的概念解决这个问题。Kotlin 用对象表达式和对象声明巧妙的实现了这一概念。 对象表达式 通过下面的方式可以创建继承自某种(或某些)匿名类的对象: ...