书栈网 · BookStack 本次搜索耗时 0.031 秒,为您找到 3431 个相关结果.
  • 8.2.6 单表达式函数

    947 2019-03-06 《Kotlin极简教程》
    8.2.6 单表达式函数 8.2.6 单表达式函数 当函数返回单个表达式时,可以省略花括号并且在 = 符号之后指定代码体即可 fun double ( x : Int ): Int = x * 2 当返回值类型可由编译器推断时,显式声明返回类型是可选的: fun double ( x : Int ) = ...
  • 10.25 Kotlin与Java对比

    996 2019-03-05 《Kotlin极简教程》
    Kotlin与Java对比 打印日志 常量与变量 null声明 空判断 字符串拼接 换行 三元表达式 操作符 类型判断和转换(显式) 类型判断和转换 (隐式) Range区间 更灵活的case语句 for循环 更方便的集合操作 遍历 方法(函数)定义 带返回值的方法(函数) constructor 构造器 JavaBean...
  • 运行测试

    测试多平台应用——教程 Test a simple multiplatform project Create your project Write code Add tests Explore the kotlin.test API Run tests Work with more complex projects Write tests fo...
  • Learn to Type

    Learn to Type Learn to Type Learn to touch-type. This is an intermediate skill because writing code is so hard that the speed at which you can type is irrelevant and can’t put ...
  • to_unsafe

    to_unsafe to_unsafe If a type defines a to_unsafe method, when passing it to C the value returned by this method will be passed. For example: lib C fun exit ( status : ...
  • Fibonacci

    432 2020-12-10 《Build your own Lisp》
    Fibonacci Fibonacci No standard library would be complete without an obligatory definition of the Fibonacci function. Using all of the above things we’ve defined we can write ...
  • to_unsafe

    to_unsafe to_unsafe If a type defines a to_unsafe method, when passing it to C the value returned by this method will be passed. For example: lib C fun exit ( status : ...
  • 字符串与其模板表达式

    793 2020-05-28 《Kotlin 基础教程》
    字符串与其模板表达式 字符串与其模板表达式 原始字符串(raw string)由三重引号(”””)分隔(这个跟python一样)。原始字符串可以包含换行符和任何其他字符。 package com . easy . kotlin fun main ( args : Array < String >) { val rawS...
  • Kotlin 1.4

    Kotlin 1.4.0 的新特性 语言特性与改进 Kotlin 接口的 SAM 转换 面向库作者的显式 API 模式 混用具名与位置参数 拖尾的逗号 可调用引用改进 对具有默认参数值的函数的引用 可作为返回 Unit 的函数的函数引用 根据函数的参数数量进行调整的引用 可调用引用的挂起转换 在循环中的 when 内部使用 break ...
  • 6.9 Response Content-Type

    6.9 Response Content-Type 6.9 Response Content-Type A Micronaut’s controller action produces application/json by default. Nonetheless you can change the Content-Type of the r...