> For the complete documentation index, see [llms.txt](https://emacs-lisp.ivory.cafe/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://emacs-lisp.ivory.cafe/lisp-shu-ju-lei-xing/bian-cheng-lei-xing/2.4.12-ha-xi-ying-she-lei-xing.md).

# 2.4.12 哈希映射类型

哈希映射表是一种非常快的查找表，表面上看和关联链表很相似，都是从键到值的映射，但是更快。哈希映射表的打印表示中包含了属性和内容，就像下面这样：

```
(make-hash-table)
    => #s(hash-table size 65 test eql rehash-size 1.5
                             rehash-threshold 0.8125 data ())
```

查看 哈希表章节，以获得更多的信息。
