# 9 符号(3/4)

符号 (symbol) 是一类具有独一无二名称的对象。本章将会介绍符号的组成、属性列表、以及符号的创建与注册 (interned)。此外还有几个章节详细介绍了如何将符号作为变量名和函数名使用。有关符号的读取语法，请参照2.4.4节。

你可以使用谓词 symbolp 来测试一个 Lisp对象 是否为 符号。

Function: symbolp object\
&#x20; 测试object是否为符号类型，当 object 是符号时返回 t， 否则返回 nil。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://emacs-lisp.ivory.cafe/fu-hao/untitled.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
