书栈网 · BookStack 本次搜索耗时 0.010 秒,为您找到 930 个相关结果.
  • Julia Documentation

    Julia 1.8 Documentation Introduction Julia 1.8 Documentation Welcome to the documentation for Julia 1.8. Please read the release notes to see what has changed since the last ...
  • Julia Documentation

    Julia 1.9 Documentation Introduction Julia 1.9 Documentation Welcome to the documentation for Julia 1.9. Please read the release notes to see what has changed since the last ...
  • Julia Documentation

    Julia 1.7 Documentation Introduction Julia 1.7 Documentation Welcome to the documentation for Julia 1.7. Please read the release notes to see what has changed since the last ...
  • 13.4 避免垃圾 (Garbage Avoidance)

    13.4 避免垃圾 (Garbage Avoidance) 13.4 避免垃圾 (Garbage Avoidance) Lisp 除了可以让你推迟考虑变量的类型以外,它还允许你推迟对内存分配的考虑。 在程序的早期阶段,暂时忽略内存分配和臭虫等问题,将有助于解放你的想象力。 等到程序基本固定下来以后,就可以开始考虑怎么减少动态分配,从而让程序运行得更快...
  • Immutability

    Immutability What happens when we re-assign a name to something new? Isn’t this like mutability? Immutability In the previous chapters we’ve made considerable progress on the ...
  • Chapter 12 练习 (Exercises)

    Chapter 12 练习 (Exercises) Chapter 12 练习 (Exercises) 画三个不同的树,能够被打印成 ((A) (A) (A)) 。写一个表达式来生成它们。 假设 make-queue , enqueue 和 dequeue 是按照图 12.7 中的定义,用箱子表式法画出下面每一步所得到的队列的结构图: >...
  • 9.1 类型 (Types)

    9.1 类型 (Types) 9.1 类型 (Types) Common Lisp 提供了四种不同类型的数字:整数、浮点数、比值与复数。本章所讲述的函数适用于所有类型的数字。有几个不能用在复数的函数会特别说明。 整数写成一串数字:如 2001 。浮点数是可以写成一串包含小数点的数字,如 253.72 ,或是用科学表示法,如 2.5372e2 ...
  • 15.4 分析 (Analysis)

    15.4 分析 (Analysis) 15.4 分析 (Analysis) 看上去,我们在这一章中写的代码,是用简单自然的方式去实现这样一个程序。事实上,它的效率非常差。我们在这里是其实是做了一个解释器。我们能够把这个程序做得像一个编译器。 这里做一个简单的描述。基本的思想是把整个程序打包到两个宏 <- 和 with-answer ,把已有程序...
  • 14.1 DSL 是什么

    2472 2019-03-05 《Kotlin极简教程》
    DSL 是什么 DSL 是什么 DSL(Domain-Specific Language,领域特定语言)指的是专注于特定问题领域的计算机语言(领域专用语言)。不同于通用的计算机语言(GPL),领域特定语言只用在某些特定的领域。 比如用来显示网页的HTML语言,以及Emacs所使用的Emac LISP语言等。更加典型的例子是Gradle,它基于Ant ...
  • Generating HTML

    Generating HTML Generating HTML Although using **FORMAT** to emit HTML works fine for the simple pages I’ve discussed so far, as you start building more elaborate pages it’d b...