书栈网 · BookStack 本次搜索耗时 0.018 秒,为您找到 930 个相关结果.
  • 1.2 起源

    1.2 起源 1.2 起源 Guido van Rossum于1989年底始创了Python,那时,他还在荷兰的CWI (Centrum voor Wiskunde en Informatica,国家数学和计算机科学研究院)。1991年初,Python发布了第一个公开发行版。这一切究竟是如何开始的呢?像C、C++、Lisp、Java和Perl一样,P...
  • reduce函数

    reduce函数 openCypher兼容性 语法 示例 reduce函数 reduce() 将表达式逐个应用于列表中的元素,然后和累加器中的当前结果累加,最后返回完整结果。该函数将遍历给定列表中的每个元素e ,在e 上运行表达式并和累加器的当前结果累加,将新的结果存储在累加器中。这个函数类似于函数式语言(如Lisp和Scala)中的fold或r...
  • Bindings

    Bindings Bindings Creative people have written bindings or interfaces for various environmentsand programming languages. Using one of these allows you to take advantage ofcurl ...
  • 10.7 示例:实用的宏函数 (Example: Macro Utilities)

    10.7 示例:实用的宏函数 (Example: Macro Utilities) 10.7 示例:实用的宏函数 (Example: Macro Utilities) 6.4 节介绍了实用函数 (utility)的概念,一种像是构造 Lisp 的通用操作符。我们可以使用宏来定义不能写作函数的实用函数。我们已经见过几个例子: nil! , ntime...
  • 9.1.2. Site-specific programs

    9.1.2. Site-specific programs 9.1.2. Site-specific programs As mandated by the FHS, packages must not place any files in /usr/local , either by putting them in the file system ...
  • 词法作用域(Lexical Scoping)

    词法作用域(Lexical Scoping) Tip 推荐使用 定义:嵌套的Python函数可以引用外层函数中定义的变量, 但是不能够对它们赋值. 变量绑定的解析是使用词法作用域, 也就是基于静态的程序文本. 对一个块中的某个名称的任何赋值都会导致Python将对该名称的全部引用当做局部变量, 甚至是赋值前的处理. 如果碰到global声明, 该名称...
  • Listing a Directory

    Listing a Directory Listing a Directory You can implement the function for listing a single directory, list-directory , as a thin wrapper around the standard function **DIRECTO...
  • 自动内存管理(Automated Memory Management)

    自动内存管理(Automated Memory Management) 引用计数(Reference Counting) 标记-清除(Mark and Sweep) 自动内存管理(Automated Memory Management) 上面的C++代码中,我们要显式地声明什么时候需要进行内存管理。但不能让所有的对象都具备这种特征呢? 那样就太方...
  • 4.8 哈希表 (Hash Table)

    4.8 哈希表 (Hash Table) 4.8 哈希表 (Hash Table) 第三章演示过列表可以用来表示集合(sets)与映射(mappings)。但当列表的长度大幅上升时(或是 10 个元素),使用哈希表的速度比较快。你通过调用 make-hash-table 来构造一个哈希表,它不需要传入参数: > ( setf ht ( ma...
  • Noteworthy Differences from other Languages

    Noteworthy Differences from other Languages Noteworthy differences from MATLAB Noteworthy differences from R Noteworthy differences from Python Noteworthy differences from C/C++...