书栈网 · BookStack 本次搜索耗时 0.032 秒,为您找到 3431 个相关结果.
  • 10.24 检查Kotlin中异常

    1515 2019-03-05 《Kotlin极简教程》
    检查Kotlin中异常 Nothing 类型 检查Kotlin中异常 如上所述,Kotlin 没有受检异常。即像下面像这样的 Kotlin 函数: class CheckKotlinException { fun thisIsAFunWithException () { throw Excepti...
  • List 相关操作

    List 相关操作 按索引取元素 取列表的一部分 查找元素位置 线性查找 在有序列表中二分查找 Comparator 二分搜索 比较函数二分搜索 List 写操作 添加 更新 删除 排序 List 相关操作 List 是 Kotlin 标准库中最受欢迎的集合类型。对列表元素的索引访问为 List 提供了一组强大的操作。 ...
  • Map Specific Operations

    Map Specific Operations Retrieving keys and values Filtering plus and minus operators Map write operations Adding and updating entries Removing entries Map Specific Ope...
  • KSP 概述

    Kotlin 符号处理 API Overview How KSP looks at source files SymbolProcessorProvider : the entry point Resources Supported libraries Kotlin 符号处理 API Kotlin Symbol Processing (KSP...
  • 数组

    数组 何时使用数组 创建数组 嵌套数组 访问与修改元素 使用数组 向函数传入可变数量的实参 比较数组 转换数组 Sum Shuffle 将数组转换为集合 转换为 List 或 Set 转换为 Map 原生类型数组 下一步做什么? 数组 数组是一种保存固定数量相同类型或其子类型的值的数据结构。 Kotlin 中最常见的数组类...
  • 共享的可变状态与并发

    共享的可变状态与并发 问题 volatile 无济于事 线程安全的数据结构 以细粒度限制线程 以粗粒度限制线程 互斥 Actors 目录 共享的可变状态与并发 问题 volatile 无济于事 线程安全的数据结构 以细粒度限制线程 以粗粒度限制线程 互斥 Actors 共享的可变状态与并发 协程可用多线程调度...
  • Qualifying By Name

    Qualifying By Name Qualifying By Name To qualify by name, use the Named annotation. For example, consider the following classes: public interface Engine { ( 1 ) ...
  • Binding Annotations

    Binding Annotations Binding Annotations All of the binding annotations support customization of the name of the variable being bound from with their name member. The followin...
  • 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 ...
  • Retrieving Collection Parts

    Retrieving Collection Parts Slice Take and drop Chunked Windowed Retrieving Collection Parts The Kotlin standard library contains extension functions for retrieving parts o...