书栈网 · BookStack 本次搜索耗时 0.038 秒,为您找到 3399 个相关结果.
  • Task Message Protocol v2 (Draft Spec.)

    Task Message Protocol v2 (Draft Spec.) Notes Undecided Definition Example Task Message Protocol v2 (Draft Spec.) Notes Support for multiple languages via the lang header...
  • 枚举类

    枚举类 初始化 匿名类 在枚举类中实现接口 使用枚举常量 枚举类 枚举类的最基本的用法是实现类型安全的枚举: enum class Direction { NORTH , SOUTH , WEST , EAST } 每个枚举常量都是一个对象。枚举常量用逗号分隔。 初始化 因为每一个枚举都是枚举类...
  • 5.4 Set

    1434 2019-03-05 《Kotlin极简教程》
    5.4 Set 5.4.1 空集 5.4.2 创建Set setOf mutableSetOf(): MutableSet<T> 5.4.3 使用Java中的Set类 5.4.4 Set元素的加减操作 plus minus 5.4 Set 类似的,Kotlin中的Set也分为:不可变Set和支持增加和删除的可变MutableSet。 ...
  • 2.30 Lua组件

    1298 2019-04-08 《Lua程序设计》
    Lua 组件 一、设计思想 二、LuaComponent 组件 三、调试LuaComponent 四、坦克组件 Lua 组件   基于组件的编程模式是Unity3D的核心思想之一,然而使用纯lua编程,基本就破坏了这一模式。那么有没有办法做一些封装,让Lua脚本也能挂载到游戏物体上,作为组件呢?   一、设计思想 在需要添加Lua组...
  • Tokenizers

    Tokenizers Built-in tokenizers Word tokenizers Partial word tokenizers Structured text tokenizers Tokenizers A tokenizer receives a stream of characters and splits the text...
  • 区间与数列

    区间与数列 区间 数列 区间与数列 Kotlin 可通过调用 kotlin.ranges 包中的 rangeTo() 函数及其操作符形式的 .. 轻松地创建两个值的区间。 通常,rangeTo() 会辅以 in 或 !in 函数。 if ( i in 1. . 4 ) { // 等同于 1 <= i && i ...
  • 返回与跳转

    返回和跳转 Break 与 Continue 标签 返回到标签 返回和跳转 Kotlin 有三种结构化跳转表达式: return。默认从最直接包围它的函数或者匿名函数 返回。 break。终止最直接包围它的循环。 continue。继续下一次最直接包围它的循环。 所有这些表达式都可以用作更大表达式的一部分: val s = perso...
  • Coding Conventions

    Coding Conventions Applying the style guide Source code organization Directory structure Source file names Source file organization Class layout Interface implementation layo...
  • Calling Kotlin from Java

    Calling Kotlin from Java Properties Package-level functions Instance fields Static fields Static methods Default methods in interfaces Compatibility mode for default methods ...
  • Kotlin 1.3

    What’s New in Kotlin 1.3 Coroutines release Kotlin/Native Multiplatform Projects Contracts Contracts in stdlib Custom Contracts Capturing when subject in a variable @JvmSta...