- 函数名称:
fset
- 函数原型:
(fset SYMBOL DEFINITION)
- 函数功能一句话描述:给一个符号(变量名、函数名等)取一个别名。
- 函数用法demo:
;; 自定义的一个函数
(defun say-hello ()
(message "hello!"))
;; 给say-hello函数取一个别名
(fset 'hhh 'say-hello)
;; 通过别名调用say-hello函数
(hhh)
执行上述代码,输出:
hello!
fset
(fset SYMBOL DEFINITION)
;; 自定义的一个函数
(defun say-hello ()
(message "hello!"))
;; 给say-hello函数取一个别名
(fset 'hhh 'say-hello)
;; 通过别名调用say-hello函数
(hhh)
执行上述代码,输出:
hello!
本文标题:Elisp一天一函数—— fset
本文链接:https://www.haomeiwen.com/subject/tihidqtx.html
网友评论