书栈网 · BookStack 本次搜索耗时 0.013 秒,为您找到 933 个相关结果.
  • Putting It All Together

    Putting It All Together Putting It All Together Now you’ve seen all the main features of the **LOOP** facility. You can combine any of the clauses I’ve discussed as long as yo...
  • Print Function

    315 2020-12-10 《Build your own Lisp》
    Print Function Print Function If we are running programs from the command line we might want them to output some data, rather than just define functions and other values. We c...
  • Client Libraries

    Client Libraries Officially-supported Kubernetes client libraries Community-maintained client libraries Client Libraries This page contains an overview of the client libraries...
  • 8.4 创建符号 (Creating Symbols)

    8.4 创建符号 (Creating Symbols) 8.4 创建符号 (Creating Symbols) 8.1 节演示了如何取得符号的名字。另一方面,用字符串生成符号也是有可能的。但比较复杂一点,因为我们需要先介绍包(package)。 概念上来说,包是将名字映射到符号的符号表(symbol-tables)。每个普通的符号都属于一个特定的包...
  • 客户端库

    客户端库 官方支持的 Kubernetes 客户端库 社区维护的客户端库 客户端库 本页面包含基于各种编程语言使用 Kubernetes API 的客户端库概述。 在使用 Kubernetes REST API 编写应用程序时, 您并不需要自己实现 API 调用和 “请求/响应” 类型。 您可以根据自己的编程语言需要选择使用合适的客户端库。 ...
  • Filling CDs(录入 CD)

    Filling CDs(录入 CD) Filling CDs(录入 CD) A single record, however, does not a database make. You need some larger construct to hold the records. Again, for simplicity’s sake, a li...
  • Character Escaping

    Character Escaping Character Escaping The first bit of the foundation you’ll need to lay is the code that knows how to escape characters with a special meaning in HTML. There a...
  • 11.9 封装 (Encapsulation)

    11.9 封装 (Encapsulation) 11.9 封装 (Encapsulation) 面向对象的语言通常会提供某些手段,来区别对象的表示法以及它们给外在世界存取的介面。隐藏实现细节带来两个优点:你可以改变实现方式,而不影响对象对外的样子,而你可以保护对象在可能的危险方面被改动。隐藏细节有时候被称为封装 (encapsulated)。 虽然...
  • 5.6 中止 (Aborts)

    5.6 中止 (Aborts) 5.6 中止 (Aborts) 你可以使用 return 在任何时候离开一个 block 。有时候我们想要做更极端的事,在数个函数调用里将控制权转移回来。要达成这件事,我们使用 catch 与 throw 。一个 catch 表达式接受一个标签(tag),标签可以是任何类型的对象,伴随着一个表达式主体: (...
  • 3.13 点状列表 (Dotted Lists)

    3.13 点状列表 (Dotted Lists) 3.13 点状列表 (Dotted Lists) 调用 list 所构造的列表,这种列表精确地说称之为正规列表(properlist )。一个正规列表可以是 NIL 或是 cdr 是正规列表的 Cons 对象。也就是说,我们可以定义一个只对正规列表返回真的判断式: [3] ( defun p...