书栈网 · BookStack 本次搜索耗时 0.009 秒,为您找到 650 个相关结果.
  • CodegenDecl编译指示

    CodegenDecl编译指示 CodegenDecl编译指示 codegenDecl 编译指示可用于直接影响Nim的代码生成器。 它接收一个格式字符串,用于确定如何在生成的代码中声明变量或proc。 对于变量,格式字符串中的$1表示变量的类型,$2是变量的名称。 以下Nim哇到处: var a {. codegenDecl : ...
  • CodegenDecl编译指示

    CodegenDecl编译指示 CodegenDecl编译指示 codegenDecl 编译指示可用于直接影响Nim的代码生成器。 它接收一个格式字符串,用于确定如何在生成的代码中声明变量或proc。 对于变量,格式字符串中的$1表示变量的类型,$2是变量的名称。 以下Nim哇到处: var a {. codegenDecl : ...
  • CodegenDecl编译指示

    CodegenDecl编译指示 CodegenDecl编译指示 codegenDecl 编译指示可用于直接影响Nim的代码生成器。 它接收一个格式字符串,用于确定如何在生成的代码中声明变量或proc。 对于变量,格式字符串中的$1表示变量的类型,$2是变量的名称。 以下Nim哇到处: var a {. codegenDecl : ...
  • Procedural type

    477 2020-10-18 《Nim v1.4 Manual》
    Procedural type Procedural type A procedural type is internally a pointer to a procedure. nil is an allowed value for variables of a procedural type. Nim uses procedural types...
  • nodecl 编译指示

    nodecl 编译指示 nodecl 编译指示 nodecl 编译指示可以应用于几乎任何标识符(变量、过程、类型等),在与 C 的互操作时往往很有用: 它告诉 Nim,不要在 C 代码中声明这个标识符。例如: var EACCES {. importc , nodecl .}: cint # 把 EACCES 假装成变量, ...
  • Header pragma

    444 2020-10-18 《Nim v1.4 Manual》
    Header pragma Header pragma The header pragma is very similar to the noDecl pragma: It can be applied to almost any symbol and specifies that it should not be declared and ins...
  • Client Libraries

    Client Libraries from Third-party Developers Client Libraries from Third-party Developers Disclaimer Yandex does not maintain the libraries listed below and hasn’t done any e...
  • used pragma

    415 2020-10-18 《Nim v1.4 Manual》
    used pragma used pragma Nim produces a warning for symbols that are not exported and not used either. The used pragma can be attached to a symbol to suppress this warning. Thi...
  • cstring类型

    cstring类型 cstring类型 cstring 类型意思是 compatible string “兼容字符串”,是编译后端字符串的原生表示。对于 C 后端, cstring 类型表示一个指向末尾为零的 char 数组的指针,该数组与 ANSI C 中的 char* 类型兼容。其主要目的是与 C 轻松互通。索引操作 s[i] 表示 s 的第 i...
  • cstring类型

    cstring类型 cstring类型 cstring 类型意味着 compatible string 是编译后端的字符串的原生表示。 对于C后端,cstring 类型表示一个指向零终止char数组的指针,该数组与Ansi C中的 char* 类型兼容。 其主要目的在于与C轻松互通。 索引操作 s [i] 表示 s 的第i个 char;但...