书栈网 · BookStack 本次搜索耗时 0.016 秒,为您找到 933 个相关结果.
  • Character Comparisons(字符比较)

    Character Comparisons(字符比较) Character Comparisons(字符比较) The main thing you can do with characters, other than putting them into strings (which I’ll get to later in this chapter...
  • Slots and Inheritance

    Slots and Inheritance Slots and Inheritance As I discussed in the previous chapter, classes inherit behavior from their superclasses thanks to the generic function machinery—a ...
  • Optional Parameters

    Optional Parameters Optional Parameters While many functions, like verbose-sum , need only required parameters, not all functions are quite so simple. Sometimes a function will...
  • Function Parameter Lists

    Function Parameter Lists Function Parameter Lists There’s not a lot more to say about function names or documentation strings, and it will take a good portion of the rest of th...
  • 错误声明 (Misdeclarations)

    错误声明 (Misdeclarations) 错误声明 (Misdeclarations) 第十三章解释了如何给变量及数据结构做类型声明。通过给变量做类型声明,你保证变量只会包含某种类型的值。当产生代码时,Lisp 编译器会依赖这个假定。举例来说,这个函数的两个参数都声明为 double-floats , ( defun df * ( a b...
  • Home

    Julia 1.4 Documentation Introduction Julia 1.4 Documentation Welcome to the documentation for Julia 1.4. Please read the release notes to see what has changed since the last...
  • 如何搜索信息

    如何发现信息 如何发现信息 你所搜寻的事情的本质决定了你应该如何去寻找它。 如果你需要客观的而且容易辨认的关于具体事物的信息,例如一个软件的最新补丁版本,可以在Internet搜索,礼貌的询问很多的人,或者发起一个讨论组。不要在网上搜索任何带有观点或主观解释的东西:能够抵达真相的概率太低了。 如果你需要“一些主观的普遍知识”,人们对这些东西已有的...
  • emacs 功能强大的全屏文本编辑器

    emacs 补充说明 语法 选项 参数 emacs命令操作大全 emacs 功能强大的全屏文本编辑器 补充说明 emacs命令 是由GNU组织的创始人Richard Stallman开发的一个功能强大的全屏文本编辑器,它支持多种编程语言,具有很多优良的特性。有众多的系统管理员和软件开发者使用emacs。 语法 emacs (选项)(...
  • 6.9 使用递归 (Using Recursion)

    6.9 使用递归 (Using Recursion) 6.9 使用递归 (Using Recursion) 比起多数别的语言,递归在 Lisp 中扮演了一个重要的角色。这主要有三个原因: 函数式程序设计。递归演算法有副作用的可能性较低。 递归数据结构。 Lisp 隐式地使用了指标,使得递归地定义数据结构变简单了。最常见的是用在列表:一个列表的递归...
  • YAML语法基础

    1562 2018-04-18 《Ansible入门》
    YAML语法基础 文件开始符 数组List 字典(Hash or Directory) 复杂的字典 注意的地方 参考资料 YAML语法基础 文件开始符 --- 数组List - element1 - element2 - element3 数组中的每个元素都是以 - 开始的。 字典(Hash or...