书栈网 · BookStack 本次搜索耗时 0.045 秒,为您找到 56211 个相关结果.
  • 18.1. All the Places Patterns May be Used

    All the Places Patterns Can Be Used match Arms Conditional if let Expressions while let Conditional Loops for Loops let Statements Function Parameters All the Places...
  • 队列(Queueing)

    队列(Queueing) 将任务加入队列(Putting Jobs into the Queue) 检索信息(Retrieving Messages) 队列(Queueing) Activities like processing videos, resizing images or sending emails aren’t suitable ...
  • Berkeley DB handles

    Berkeley DB handles Berkeley DB handles The Berkeley DB library has a number of object handles. The following table lists those handles, their scope, and whether they are free-...
  • 第8章 条件和循环

    第8章 条件和循环 第8章 条件和循环 本章主题 ♦ - if语句 ♦ - else语句 ♦ - elif语句 ♦ -条件表达式 ♦ - while语句 ♦ - for语句 ♦ - break语句 ♦ - continue语句 ♦ - pass语句 ♦ else语句(两次述及) ♦ Iterators迭代器 ♦ -列表解析 ...
  • 布尔类型

    布尔类型 布尔类型 布尔类型在Nim中命名为 bool 并且可以是两个预定义值之一 true 和 false 。 while , if , elif , when 中的语句需要是 bool 类型。 这种情况成立: ord ( false ) == 0 and ord ( true ) == 1 布尔类型定...
  • Simplify

    44 2024-08-11 《Blender 4.2 Manual》
    Simplify Brush Settings General Simplify Reference Mode: Sculpt Mode Tool: Toolbar ‣ Simplify The Simplify brush is specifically meant for use with Dyntopo to remove/add...
  • Error Code Troubleshooting

    OSM Control Plane Error Code Troubleshooting Guide Error Code Descriptions OSM Control Plane Error Code Troubleshooting Guide Error Code Descriptions If error codes are presen...
  • MySQL · 源码阅读 · 非阻塞异步C API简介

    概述 MySQL C API接口 调用模式 建立连接 执行SQL 获取查询结果集 获取下一个查询结果集 获取结果集的下一行 释放结果集分配的内存 示例 准备工作 限制 概述 MySQL从8.0.16版本引入了非阻塞的异步C API接口,可以与 MySQL服务器进行非阻塞通信。原先的同步阻塞式接口在发起某个调用后,客户端必须等待这个...
  • 控制流

    控制流 For-In 循环 While 循环 While Repeat-While 条件语句 If Switch 不存在隐式的贯穿 区间匹配 元组 值绑定(Value Bindings) Where 复合型 Cases 控制转移语句 Continue Break 循环语句中的 break Switch 语句中的 break ...
  • 17. Letter Combinations of a Phone Number

    题目描述(中等难度) 解法一 定义相乘 解法二 队列迭代 解法三 递归 总 题目描述(中等难度) 给一串数字,每个数可以代表数字键下的几个字母,返回这些数字下的字母的所有组成可能。 解法一 定义相乘 自己想了用迭代,用递归,都理不清楚,灵机一动,想出了这个算法。 把字符串 “23” 看成 [“a”,”b”,c] * [“d”,”e...