在Lisp中序列化
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Lisp中序列化相关的知识,希望对你有一定的参考价值。
Example of serializing a lisp variable.
;;; Save (defun save-obj (filename obj) (with-open-file (out filename :direction :output :if-exists :supersede) (with-standard-io-syntax (print obj out)))) ;;; Load (defun load-obj (filename obj) (with-open-file (in filename) (with-standard-io-syntax (setf obj (read in)))))
以上是关于在Lisp中序列化的主要内容,如果未能解决你的问题,请参考以下文章