书栈网 · BookStack 本次搜索耗时 0.038 秒,为您找到 3431 个相关结果.
  • 使用 Spring Data CrudRepository 进行数据库访问

    使用 Spring Data CrudRepository 进行数据库访问 Update your application Run the application Next step 使用 Spring Data CrudRepository 进行数据库访问 This is the final part of the Getting starte...
  • 怎么去创建一个自定义的委托

    怎么去创建一个自定义的委托 怎么去创建一个自定义的委托 先来说说我们要实现什么,举个例子,我们创建一个notNull 的委托,它只能被赋值一次,如果第二次赋值,它就会抛异常。 Kotlin库提供了几个接口,我们自己的委托必须要实现:ReadOnlyProperty 和ReadWriteProperty 。具体取决于我们被委托的对象是val 还是va...
  • 反射

    反射 类引用 绑定的类引用(自 1.1 起) 可调用引用 函数引用 示例:函数组合 属性引用 与 Java 反射的互操作性 构造函数引用 绑定的函数与属性引用(自 1.1 起) 绑定的构造函数引用 反射 反射是这样的一组语言和库功能,它允许在运行时自省你的程序的结构。Kotlin 让语言中的函数和属性做为一等公民、并对其自省(即在...
  • Classes and Inheritance

    Classes and Inheritance Classes Constructors Secondary constructors Creating instances of classes Class members Inheritance Overriding methods Overriding properties Derived ...
  • 2.3 Web RESTFul HelloWorld

    2324 2019-03-05 《Kotlin极简教程》
    2.3 Web RESTFul HelloWorld 2.3 Web RESTFul HelloWorld 本节介绍使用 Kotlin 结合 SpringBoot 开发一个RESTFul版本的 Hello.World 。 新建gradle,kotlin工程: 打开IDEA的File > New > Project , 如下图 按照界...
  • Testing

    Testing Server Applications TestEngine Building post/put bodies application/x-www-form-urlencoded multipart/form-data Defining configuration properties in tests HttpsRedirect ...
  • this 表达式

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

    函数 函数声明 函数用法 参数 默认参数 具名参数 返回 Unit 的函数 单表达式函数 显式返回类型 可变数量的参数(Varargs) 中缀表示法 函数作用域 局部函数 成员函数 泛型函数 内联函数 扩展函数 高阶函数和 Lambda 表达式 尾递归函数 函数 函数声明 Kotlin 中的函数使用 fun ...
  • 可预测性

    可预测性 Use sealed interfaces Hide implementations with sealed classes Validate your inputs and state Validate inputs with the require() function Validate state with the check() fu...
  • 字符串

    Java 与 Kotlin 中的字符串 字符串连接 构建字符串 由集合内元素创建字符串 如果字符串为空白就设置默认值 替换字符串首尾处的(多个)字符 正则替换 字符串拆分 取子串 使用多行字符串 下一步做什么? Java 与 Kotlin 中的字符串 This guide contains examples of how to pe...