书栈网 · BookStack 本次搜索耗时 0.019 秒,为您找到 1709 个相关结果.
  • 工具

    工具 链接 工具 链接 Kotlin代码文档 使用Maven 使用Ant 使用Griffon 使用Gradle
  • Mock singleton objects and static methods

    327 2021-11-12 《MockK Guidebook》
    Mock singleton objects and static methods Mocking objects Mocking static methods Unmocking Mock singleton objects and static methods Mocking objects When you need a singleto...
  • Java

    influxdb-client-java Note: Use this client library with InfluxDB 2.x and InfluxDB 1.8+ ( see details ). For connecting to InfluxDB 1.7 or earlier instances, use the influxdb-jav...
  • Sealed Classes

    Sealed Classes Sealed Classes Sealed classes are used for representing restricted class hierarchies, when a value can have one of the types from a limited set, but cannot have ...
  • 参考

    参考 参考 . API 与语法 关键字与操作符 语法 兼容性 原文: https://hltj.gitbooks.io/kotlin-reference-chinese/content/txt/reference0.html
  • 内存管理器

    内存管理器 内存管理器 Kotlin/Native 内存管理 iOS 集成 迁移到新版内存管理器 旧版内存管理器 不可变性与并发 并发概述 并发可变性 并发与协程
  • 类型检测与类型转换

    类型检测与类型转换 is 与 !is 操作符 智能转换 “不安全的”转换操作符 “安全的”(可空)转换操作符 类型检测与类型转换 In Kotlin, you can perform type checks to check the type of an object at runtime. Type casts convert objects...
  • 原生

    并发 不可变性 Kotlin 库 平台库 与 C 语言互操作 与 Objective-C 及 Swift 互操作 CocoaPods 集成 Gradle 插件 调试 FAQ
  • 包与导入

    包 默认导入 导入 顶层声明的可见性 包 源文件通常以包声明开头: package org . example fun printMessage () { /*……*/ } class Message { /*……*/ } // …… 源文件所有内容(无论是类还是函数)都包含在声明的包内...
  • 属性

    属性 属性 属性与Java中的字段是相同的,但是更加强大。属性做的事情是字段加上getter加上setter。我们通过一个例子来比较他们的不同之处。这是Java中字段安全访问和修改所需要的代码: public class Person { private String name ; public S...