书栈网 · BookStack 本次搜索耗时 0.062 秒,为您找到 3399 个相关结果.
  • 可调试性

    可调试性 Always provide a toString() method What’s next? 可调试性 This chapter contains considerations about debuggability. Always provide a toString() method To make debugging easi...
  • 11. 联结表

    2427 2018-10-22 《MySQL基础笔记》
    联结表 关系表 使用联结的好处 创建联结 WHERE子句的重要 内部联结 联结多个表 联结表 什么是链接,为什么要使用,如何使用。 关系表 例子: 一个包含目录的数据库,其中每种类型物品占用一行,每种物品要存储的信息包括产品描述和价格,以及生产该产品的供应商信息。 有一个供应商生产多种物品,何处存储供应商的信息(地址,电话等),如...
  • Shared Mutable State and Concurrency

    Shared mutable state and concurrency The problem Volatiles are of no help Thread-safe data structures Thread confinement fine-grained Thread confinement coarse-grained Mutual ...
  • Implementing a builder: The rest of the standard methods

    seriesOrder: 11 Implementing “While” “While” in use Handling exceptions with “try..with” Implementing “try..finally” Implementing “using” “For” revisited layout: posttitle...
  • 异步流

    异步流 表示多个值 序列 挂起函数 流 流是冷的 流取消基础 流构建器 过渡流操作符 转换操作符 限长操作符 末端流操作符 流是连续的 流上下文 withContext 发出错误 flowOn 操作符 缓冲 合并 处理最新值 组合多个流 Zip Combine 展平流 flatMapConcat flatMapMe...
  • 异步流

    异步流 表示多个值 序列 挂起函数 流 流是冷的 流取消基础 流构建器 过渡流操作符 转换操作符 限长操作符 末端流操作符 流是连续的 流上下文 A common pitfall when using withContext flowOn 操作符 缓冲 合并 处理最新值 组合多个流 Zip Combine 展平流 f...
  • Nested Classes

    Nested and Inner Classes Inner classes Anonymous inner classes Nested and Inner Classes Classes can be nested in other classes: class Outer { private val bar : ...
  • Callbacks

    Callbacks Passing a closure to a C function Raises annotation Callbacks You can use function types in C declarations: lib X # In C: # # void callback(int (*...
  • Callbacks

    Callbacks Passing a closure to a C function Raises annotation Callbacks You can use function types in C declarations: lib X # In C: # # void callback(int (*...
  • 闭包

    847 2020-05-28 《Kotlin 基础教程》
    函数编程之闭包漫谈(Closure) 函数是什么 引用环境 函数编程之闭包漫谈(Closure) 函数是什么 >>> def ExFunc ( n ): sum = n def InsFunc (): return sum + 1 return I...