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

    389 2020-05-28 《Kotlin 基础教程》
    data class数据类 toString() hashCode() copy() component1() 第一个参数 component2() 第二个参数 @PoKo data class Country ( val id : Int , val name : String ) class ComponentX ...
  • Type-Safe Builders

    Type-Safe Builders A type-safe builder example How it works Scope control: @DslMarker (since 1.1) Full definition of the com.example.html package Type-Safe Builders By usi...
  • Kotlin 中调用 JavaScript

    Kotlin 中调用 JavaScript 内联 JavaScript external 修饰符 声明类的(静态)成员 声明可选参数 扩展 JavaScript 类 external 接口 Casting Kotlin 中调用 JavaScript Kotlin 最初被设计为能够与 Java 平台轻松互操作。它将 Java 类视为 ...
  • Select Expression (experimental)

    Select Expression (experimental) Selecting from channels Selecting on close Selecting to send Selecting deferred values Switch over a channel of deferred values Table of con...
  • 7.6 继承

    973 2019-03-05 《Kotlin极简教程》
    7.6 继承 7.6.1 open类 7.6.2 多重继承 7.6 继承 继承是面向对象编程的一个重要的方式,因为通过继承,子类就可以扩展父类的功能。 在Kotlin中,所有的类会默认继承Any这个父类,但Any并不完全等同于java中的Object类,因为它只有equals(),hashCode()和toString()这三个方法。 7...
  • Storages

    Storages note note Custom SessionStorage Storages note This help topic is in development and will be updated in the future. There are two predefined storages: Sessi...
  • Kotlin 中调用 JavaScript

    Kotlin 中调用 JavaScript 内联 JavaScript external 修饰符 声明类的(静态)成员 声明可选参数 扩展 JavaScript 类 external 接口 Kotlin 中调用 JavaScript Kotlin 已被设计为能够与 Java 平台轻松互操作。它将 Java 类视为 Kotlin 类,并且J...
  • 用 Lincheck 编写第一个测试

    用 Lincheck 编写第一个测试 Create a project Add required dependencies Write a concurrent counter and run the test Trace the invalid execution Test the Java standard library Next step ...
  • C语言绑定

    C语言绑定 Lib fun C语言绑定 crystal允许你直接调用现成的C库。此外,crystal还提供了像out, to_unsafe之类的操作,使用绑定是非常便利的。 Lib lib声明了一组C函数和类型。 @[ Link ( "pcre" )] lib LibPCRE end 一个lib的名称通常以Lib开头,...
  • Functions

    Functions Function declarations Function usage Parameters Default arguments Named arguments Unit-returning functions Single-expression functions Explicit return types Variab...