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

    alias alias An alias declaration inside a lib declares a C typedef : lib X alias MyInt = Int32 end Now Int32 and MyInt are interchangeable: lib X alia...
  • alias

    alias alias An alias declaration inside a lib declares a C typedef : lib X alias MyInt = Int32 end Now Int32 and MyInt are interchangeable: lib X alia...
  • alias

    alias alias An alias declaration inside a lib declares a C typedef : lib X alias MyInt = Int32 end Now Int32 and MyInt are interchangeable: lib X ali...
  • alias

    alias alias An alias declaration inside a lib declares a C typedef : lib X alias MyInt = Int32 end Now Int32 and MyInt are interchangeable: lib X al...
  • Using the @Scheduled Annotation

    Using the @Scheduled Annotation Scheduling at a Fixed Rate Scheduling with a Fixed Delay Scheduling a Cron Task Scheduling with only an Initial Delay Using the @Scheduled A...
  • JavaScript 模块

    JavaScript 模块 浏览器目标 JavaScript 库与 Node.js 文件 选择目标模块系统 @JsModule 注解 将 @JsModule 应用到包 导入更深的包层次结构 @JsNonModule 注解 Kotlin 标准库使用的模块系统 JavaScript 模块 可以将 Kotlin 项目编译为适用于各种流行模块系...
  • 3.12 Context Events

    3.12 Context Events Publishing Events Listening for Events 3.12 Context Events Micronaut supports a general event system through the context. The ApplicationEventPublisher A...
  • Chapter 3 Objects in OCaml

    Chapter 3 Objects in OCaml 3.1 Classes and objects 3.2 Immediate objects 3.3 Reference to self 3.4 Initializers 3.5 Virtual methods 3.6 Private methods 3.7 Class inte...
  • 取消与超时

    取消与超时 取消协程的执行 取消是协作的 使计算代码可取消 在 finally 中释放资源 运行不能取消的代码块 超时 Asynchronous timeout and resources 取消与超时 这一部分包含了协程的取消与超时。 取消协程的执行 在一个长时间运行的应用程序中,你也许需要对你的后台协程进行细粒度的控制。 比如说,...
  • 代理属性

    代理属性 标准代理 延迟 可观察属性 在 Map 中存储属性 本地代理属性(从1.1开始支持) 属性代理的要求 转换规则 提供代理(自 1.1 起) 代理属性 Kotlin 很多常用属性,虽然我们可以在每次需要的时候手动实现它们,但更好的办法是一次实现多次使用,并放到库里。比如: 延迟属性:只在第一次访问时计算它的值。可观察属性:...