书栈网 · BookStack 本次搜索耗时 0.034 秒,为您找到 3431 个相关结果.
  • 7.4 接口

    1134 2019-03-05 《Kotlin极简教程》
    7.4 接口 7.4.1 接口定义 7.4.2 实现接口 7.4.3 覆盖冲突 7.4.4 接口中的属性 7.5 抽象类和接口的差异 概念上的区别 语法层面上的区别 设计层面上的区别 实际应用上的差异 7.4 接口 7.4.1 接口定义 和Java类似,Kotlin使用interface作为接口的关键词: interface ...
  • 过滤

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

    7.2 Types and their Syntax 7.2 Types and their Syntax Types describe sets of Erlang terms. Types consist of, and are built from, a set of predefined types, for example, inte...
  • 基本类型

    基本类型 数字 字面常量 数字字面值中的下划线(自 1.1 起) 表示方式 显式转换 运算 浮点数比较 字符 布尔 数组 字符串 字符串字面值 字符串模板 基本类型 在 Kotlin 中,所有东西都是对象,在这个意义上讲我们可以在任何变量上调用成员函数和属性。一些类型可以有特殊的内部表示——例如,数字、字符和布尔值可以在运行...
  • 8.2.7 函数作用域

    868 2019-03-06 《Kotlin极简教程》
    8.2.7 函数作用域 8.2.7 函数作用域 在 Kotlin 中函数可以在文件顶层声明,这意味着你不需要像一些语言如 Java、C# 或 Scala 那样创建一个类来保存一个函数。此外除了顶层函数,Kotlin 中函数也可以声明在局部作用域、作为成员函数以及扩展函数。#### 局部函数(嵌套函数) Kotlin 支持局部函数,即一个函数在另一个...
  • 3.13 Bean Events

    3.13 Bean Events 3.13 Bean Events You can hook into the creation of beans using one of the following interfaces: BeanInitializedEventListener - allows modifying or replacing...
  • Data Conversion

    Data Conversion Basic Installation Adding Converters Accessing the Service The ConversionService Interface Data Conversion DataConversion is a feature that allows to seria...
  • 3.13 Bean Events

    3.13 Bean Events 3.13 Bean Events You can hook into the creation of beans using one of the following interfaces: BeanInitializedEventListener - allows modifying or replacing...
  • Data Conversion

    Data Conversion note Basic Installation Adding Converters Accessing the Service The ConversionService Interface Data Conversion note This help topic is in developmen...
  • 轻量级线程:协程2

    1077 2020-05-28 《Kotlin 基础教程》
    挂起函数的组合执行 按默认顺序执行 使用async异步并发执行 协程上下文与调度器 调度和线程 父子协程 通道 通道 vs 阻塞队列 关闭通道和迭代遍历元素 生产者-消费者模式 管道 生产无限序列 管道与无穷质数序列 通道缓冲区 构建无穷惰性序列 协程与线程比较 协程的好处 阻塞 vs 挂起 协程的内部机制 基本原理 标...