书栈网 · BookStack 本次搜索耗时 0.014 秒,为您找到 650 个相关结果.
  • cstring type

    116 2024-07-11 《Nim v2.0 Manual》
    cstring type cstring type The cstring type meaning compatible string is the native representation of a string for the compilation backend. For the C backend the cstring type re...
  • About this document

    704 2020-10-18 《Nim v1.4 Manual》
    About this document About this document Note : This document is a draft! Several of Nim’s features may need more precise wording. This manual is constantly evolving into a pro...
  • Emit编译指示

    Emit编译指示 Emit编译指示 emit 编译指示可用于直接影响编译器代码生成器的输出。 因此,它使您的代码无法移植到其他代码生成器/后端。 它的使用非常不鼓励的!但是,它对于与 C++ 或 Objective C 代码非常有用。 示例: {. emit : """ static int cvariable = 420; """ .}...
  • Varargs编译指示

    Varargs编译指示 Varargs编译指示 varargs 编译指示只适用于过程 (和过程类型)。 它告诉Nim proc可以在最后指定的参数获取可变数量的参数。 Nim字符串值将自动转换为C字符串: proc printf ( formatstr : cstring ) {. nodecl , varargs .}   print...
  • 定义

    定义 定义 Nim代码指定一个计算,该计算作用于由称为 位置 的组件组成的内存。 变量基本上是位置的名称。每个变量和位置都是某种 类型 。 变量类型叫做 静态类型 ,位置的类型叫做 动态类型 。 如果静态类型和动态类型不一样,它是动态类型的一个超类型或子类型。 标识符 是声明为变量,类型,过程等的名称的符号。 声明适用的程序区域叫做 作用域 ...
  • 更多示例

    更多示例 Strformat 抽象语法树模式匹配(Ast Pattern Matching) OpenGL沙盒 更多示例 本教程讲解了宏系统的基础。对于宏能够做的事情,有些宏可以给你灵感。 Strformat 在Nim标准库中, strformat 库提供了一个在编译时解析字符串字面值的宏。通常不建议像这样在宏中解析字符串。 解析的AST...
  • packages/docutils/rst

    Imports Types Consts Procs Source Edit This module implements a reStructuredText (RST) and Markdown parser. User’s manual on supported markup syntax and command line us...
  • 模块

    模块 Import语句 Include语句 导入的模块名 从目录中集体导入 伪import/include目录 From import语句 Export语句 模块 Nim支持通过模块概念将程序拆分为多个部分。 每个模块都需要在自己的文件中,并且有自己的 命名空间 。 模块启用 信息隐藏 and 分开编译 。 模块可以通过 import ...
  • Varargs pragma

    106 2024-07-11 《Nim v2.0 Manual》
    Varargs pragma Varargs pragma The varargs pragma can be applied to procedures only (and procedure types). It tells Nim that the proc can take a variable number of parameters af...
  • 教程I

    引言 引言 "人是一种视觉动物 — 我渴望美好事物。" 本文是编程语言Nim的教程。该教程认为你熟悉基本的编程概念如变量、类型和语句但非常基础。 manual 包含更多的高级特性示例。本教程的代码示例和其它的Nim文档遵守 Nim style guide 。 第一个程序 词法元素 var语句 赋值语句 常量 let语句 ...