书栈网 · BookStack 本次搜索耗时 0.037 秒,为您找到 3431 个相关结果.
  • 委托属性

    委托属性 标准委托 延迟属性 Lazy 可观察属性 Observable 把属性储存在映射中 属性委托要求 翻译规则 提供委托(自 1.1 起) 委托属性 有一些常见的属性类型,虽然我们可以在每次需要的时候手动实现它们,但是如果能够为大家把他们只实现一次并放入一个库会更好。例如包括: 延迟属性(lazy properties): 其...
  • 写入和查询数据库

    写入和查询数据库 查询一个forecast 保存一个forecast 写入和查询数据库 SqliteOpenHelper 只是一个工具,是SQL世界和OOP之间的一个通道。我们要新建几个类来请求已经保存在数据库中的数据,和保存新的数据。被定义的类会使用ForecastDbHelper 和DataMapper 来转换数据库中的数据到domain m...
  • Qualifying By Name

    Qualifying By Name Qualifying By Name To qualify by name you can use the Named annotation. For example, consider the following classes: public interface Engine { ( 1 ...
  • Equality in Pony

    560 2020-09-03 《PonyLang Tutorial》
    Identity equality Structural equality Primitives and equality Pony features two forms of equality: by structure and by identity. Identity equality Identity equality checks i...
  • Whole Body Binding

    Whole Body Binding Whole Body Binding When request part names aren’t known ahead of time, or to read the entire body, a special type can be used to indicate the entire body is d...
  • Whole Body Binding

    Whole Body Binding Whole Body Binding For the cases where the names of the parts of the request cannot be known ahead of time, or the entire body should be read, a special type...
  • 构造集合

    构造集合 由元素构造 空集合 list 的初始化函数 具体类型构造函数 复制 调用其他集合的函数 构造集合 由元素构造 创建集合的最常用方法是使用标准库函数 listOf<T>() 、setOf<T>() 、mutableListOf<T>() 、mutableSetOf<T>() 。 如果以逗号分隔的集合元素列表作为参数,编...
  • 3.7 Bean Factories

    3.7 Bean Factories Programmatically Disabling Beans Injection Point 3.7 Bean Factories In many cases, you may want to make available as a bean a class that is not part of you...
  • 类与继承

    类和继承 类 构造函数 次构造函数 创建类的实例 类成员 继承 覆盖方法 覆盖属性 派生类初始化顺序 调用超类实现 覆盖规则 抽象类 伴生对象 类和继承 类 Kotlin 中使用关键字 class 声明类 class Invoice { ... } 类声明由类名、类头(指定其类型参数、...
  • 高阶函数和lambda表达式

    高阶函数与 lambda 表达式 高阶函数 内联函数 字面函数和函数表达式 函数类型 函数文本语法 函数表达式 闭包 函数表达式扩展 高阶函数与 lambda 表达式 高阶函数 高阶函数就是可以接受函数作为参数或者返回一个函数的函数。比如 lock() 就是一个很好的例子,它接收一个 lock 对象和一个函数,运行函数并释放 l...