书栈网 · BookStack 本次搜索耗时 0.031 秒,为您找到 3399 个相关结果.
  • A Short Guide to Pony Error Messages

    484 2020-09-03 《PonyLang Tutorial》
    left side must be something that can be assigned to cannot write to a field in a box function receiver type is not a subtype of target type A note on compiler versions You’ve ...
  • Creating Custom Features

    Creating Custom Features note Creating Custom Features note This help topic is in development and will be updated in the future. You can develop your own features and...
  • Local Error Handling

    Local Error Handling Local Error Handling For example the following method will handling JSON parse exceptions from Jackson for the scope of the declaring controller: Local ex...
  • 润色我们的代码

    润色我们的代码 润色我们的代码 我们已经准备好使用public 来进行重构了,但是我们还有很多其它细节需要修改。比如,在RequestForecastCommand 中,我们在构造函数中我们创建的属性zipCode 可以定义为private : class RequestForecastCommand ( private val zipCod...
  • This 表达式

    This 表达式 限定的 this This 表达式 为了表示当前的 接收者 我们使用 this 表达式: 在类 的成员中,this 指的是该类的当前对象。 在扩展函数 或者带有接收者的函数字面值 中,this 表示在点左侧传递的 接收者 参数。如果 this 没有限定符,它指的是最内层的包含它的作用域。要引用其他作用域中的 thi...
  • Configurations

    Configurations note note The HOCON file note note Command Line Configuring the embeddedServer Multiple connectors Netty Jetty CIO Tomcat note Available configuration ...
  • 可空性

    Java 与 Kotlin 中的可空性 Support for nullable types Platform types Support for definitely non-nullable types Checking the result of a function call Default values instead of null F...
  • 6.18 Writing Response Data

    6.18 Writing Response Data Reactively Writing Response Data Performing Blocking I/O 404 Responses 6.18 Writing Response Data Reactively Writing Response Data Micronaut’s H...
  • Alternative Languages - Using Kotlin

    Quarkus - Using Kotlin Prerequisites Creating the Maven project Update code Important Maven configuration points Important Gradle configuration points CDI @Inject with Kotlin ...
  • 空安全

    空安全 可空类型与非空类型 在条件中检查 null 安全的调用 Elvis 操作符 !! 操作符 安全的类型转换 可空类型的集合 空安全 可空类型与非空类型 Kotlin 的类型系统旨在消除来自代码空引用的危险,也称为《十亿美元的错误》 。 许多编程语言(包括 Java)中最常见的陷阱之一,就是访问空引用的成员会导致空引用异常。在...