书栈网 · BookStack 本次搜索耗时 0.033 秒,为您找到 3399 个相关结果.
  • 函数式(SAM)接口

    函数式(SAM)接口 SAM 转换 Migration from an interface with constructor function to a functional interface 函数式接口与类型别名比较 函数式(SAM)接口 只有一个抽象方法的接口称为函数式接口或 单一抽象方法(SAM)接口。函数式接口可以有多个非抽象成员,但只...
  • Objects

    Object Expressions and Declarations Object expressions Object declarations Companion Objects Semantic difference between object expressions and declarations Object Expressi...
  • 8.5 Locally abstract types

    8.5 Locally abstract types Polymorphic syntax 8.5 Locally abstract types (Introduced in OCaml 3.12, short syntax added in 4.03) parameter ::= … ∣ ( type {typ...
  • Attributes

    Attributes note Basic usage API reference Attributes note This help topic is in development and will be updated in the future. Ktor offers an Attributes class that...
  • Composing Suspending Functions

    Composing Suspending Functions Sequential by default Concurrent using async Lazily started async Async-style functions Structured concurrency with async Table of contents ...
  • 接口

    接口 实现接口 接口中的属性 解决重写冲突 接口 Kotlin 的接口很像 java 8。它们都可以包含抽象方法,以及方法的实现。和抽象类不同的是,接口不能保存状态。可以有属性但必须是抽象的,或者提供访问器的实现。 接口用关键字 interface 来定义: interface MyInterface { fun ba...
  • 8.2.1 Kotlin中的函数

    905 2019-03-06 《Kotlin极简教程》
    8.2.1 Kotlin中的函数 8.2.1 Kotlin中的函数 首先,我们来看下Kotlin中函数的概念。#### 函数声明 Kotlin 中的函数使用 fun 关键字声明 fun double ( x : Int ): Int { return 2 * x } ```#### 函数用法 调用函...
  • 内联类

    Inline value classes 成员 继承 表示方式 名字修饰 Calling from Java code 内联类与类型别名 Inline classes and delegation Inline value classes 有时候,业务逻辑需要围绕某种类型创建包装器。然而,由于额外的堆内存分配问题, 它会引入运行时的性能开...
  • Examples

    634 2020-09-03 《PonyLang Tutorial》
    Enum with values Enum with values with namespace Enum which can be iterated Read struct values from FFI Get and pass pointers to FFI Pass an Array of values to FFI (TODO) How...
  • 7.9 单例模式(Singleton)与伴生对象(companion object)

    2012 2019-03-05 《Kotlin极简教程》
    7.9 单例模式(Singleton)与伴生对象(companion object) 7.9.1 单例模式(Singleton) 7.9.2 object对象 7.9.3 嵌套(Nested)object对象 7.9.4 匿名object 7.9.5 伴生对象(companion object) 7.9 单例模式(Singleton)与伴生...