书栈网 · BookStack 本次搜索耗时 0.028 秒,为您找到 930 个相关结果.
  • 生成表

    生成表 简介 Cons单元和表 Cons单元 表 原子 引用 特殊形式 car函数和cdr函数 list函数 小结 习题解答 答案1 答案2 生成表 简介 作为Lisp语言大家族的一员,Scheme同样擅长于处理表。你应该理解表以及有关表的操作以掌握Scheme。表在在后面章节中的递归函数和高阶函数中扮演重要角色。 在...
  • Homoiconicity

    523 2020-06-21 《Practicalli Clojure》
    Homoiconicity An example References Homoiconicity Clojure is a homoiconic language, which is a term describing the fact that Clojure programs are represented by Clojure data ...
  • Atom ProtoREPL

    756 2020-06-21 《Practicalli Clojure》
    Atom.io and ProtoREPL Install Atom.io Standalone Install Via Package Manager Running Atom Danger::Leiningen in GitBash does not work with Atom Install Proto REPL package Conf...
  • 使用Java方法

    1473 2019-05-04 《Clojure学习笔记》
    Clojure使用Java方法 调用一个Java对象的方法 设置一个Java对象的共有成员变量 调用静态共有成员变量/函数 创建一个对象 连续调用一个对象的方法 import java package 访问一个类的内部类 Clojure使用Java方法 Clojure有一个很强大的功能,就是你可以使用Lisp语言风格无缝的调用java ...
  • 字符串

    1096 2018-03-24 《Ruby 风格指南》
    字符串 倾向使用字符串插值或字符串格式化,而不是字符串拼接。[link ] # 差 email_with_name = user . name + ' <' + user . email + '>' # 好 email_with_name = "#{user.name} <#{user.email}>" ...
  • Binary Format Basics

    Binary Format Basics Binary Format Basics The starting point for reading and writing binary files is to open the file for reading or writing individual bytes. As I discussed in...
  • Training the Filter

    Training the Filter Training the Filter Now that you have a way to keep track of individual features, you’re almost ready to implement score . But first you need to write the c...
  • Multimethods

    Multimethods Multimethods Methods that explicitly specialize more than one of the generic function’s required parameters are called multimethods. Multimethods are where generic...
  • 与其他语言的显著差异

    与其他语言的显著差异 与 MATLAB 的显著差异 与 R 的显著差异 与 Python 的显著差异 与 C/C++ 的显著差异 与 Common Lisp 的显著差异 与其他语言的显著差异 与 MATLAB 的显著差异 虽然 MATLAB 用户可能会发现 Julia 的语法很熟悉,但 Julia 不是 MATLAB 的克隆。 它们之间...
  • 向量和结构体

    向量和结构体 简介 向量 字面值 向量函数 结构体 大体功能 MIT-Scheme中的结构体 The Mastermind — 一个简单的密码破解游戏 表示四个数字 程序的设计 源代码 如何玩 小结 习题解答 答案1 向量和结构体 简介 本章中,我将讲解向量和结构体。 向量是一组通过整数索引的数据。与C语言中的数组...