书栈网 · BookStack 本次搜索耗时 0.010 秒,为您找到 650 个相关结果.
  • 字符串字面值

    字符串字面值 字符串字面值 语法中的终结符号: STR_LIT . 字符串可以用配对的双引号来分隔,可以包含以下 escape sequences”转义字符”: 转义字符 含义 \p 平台特定的换行符: Windows 上的 CRLF , Unix上 的 LF \r, \c carriage return 回车 \n, \l line feed ...
  • Constants and Constant Expressions

    500 2020-10-18 《Nim v1.4 Manual》
    Constants and Constant Expressions Constants and Constant Expressions A constant is a symbol that is bound to the value of a constant expression. Constant expressions are rest...
  • 字符字面值

    字符字面值 字符字面值 字符字面值用单引号 '' 括起来,并且可以包含与字符串相同的转义序列 - 有一个例外:平台依赖的 newline (\p) 是不允许的,因为它可能比一个字符宽(通常是CR / LF对)。 以下是对字符字面值有效的 转义序列 : 转义序列 含义 \r, \c 回车 \n, \l 换行 \f 换页 \t 制表符 \v 垂直制表符...
  • Do 标记

    Do 标记 Do 标记 作为一种特殊的简洁表示法, do 关键字可以用来将匿名过程传递给过程: var cities = @[ "Frankfurt" , "Tokyo" , "New York" , "Kyiv" ] sort ( cities ) do ( x , y : string ) -> ...
  • 目前收录的题目

    目前收录的题目 目前收录的题目 为什么开这样一页,是因为分类的情况下,大家找题目可能不方便,为了方便大家找题目开了这一页,所有题目按顺序排列,大家可以用ctrl+f找自己需要的题目 001. Two Sum[E] 002. Add Two Numbers [M] 003. Longest Substring Without Repeating...
  • 宏 宏 宏是一种在编译时运行的特殊函数。通常,宏的输入是所传入的代码的抽象语法树(AST)。 宏然后可以对其执行转换,并将转换后的 AST 结果返回。 可以用来添加自定义的语言功能,实现 domain-specific languages “领域特定语言”。 宏的调用是一种特殊情况,语义分析并不 完全是自顶向下、从左到右的。相反,语义分析至少发生两...
  • Custom annotations

    104 2024-07-11 《Nim v2.0 Manual》
    Custom annotations Custom annotations It is possible to define custom typed pragmas. Custom pragmas do not affect code generation directly, but their presence can be detected b...
  • Constants and Constant Expressions

    105 2024-07-11 《Nim v2.0 Manual》
    Constants and Constant Expressions Constants and Constant Expressions A constant is a symbol that is bound to the value of a constant expression. Constant expressions are restr...
  • sysrand

    See also Imports Procs Source Edit Warning: This module was added in Nim 1.6. If you are using it for cryptographic purposes, keep in mind that so far this has not been...
  • Debug示例

    Debug示例 Debug示例 以下示例实现了一个强大的 debug 命令,该命令接受可变数量的参数: # 使用Nim语法树,我们需要一个在``macros``模块中定义的API: import macros   macro debug ( args : varargs [ untyped ]): untyped = # `...