我有这个简单的程序
(defun testing-func ()
(print "@Repl has Started@")
(loop (print (eval (read)))))
(sb-ext:save-lisp-and-die #P"output-test"
:toplevel #'testing-func
:executable t)
每当我调用testing-func
REPL 时,它都能正常工作;像这样:
CL-USER> (testing-func)
@Repl has Started@
1 ;;input
1 2 ;; 1 is output, 2 is input
2 3 ;; 2 is output, 3 is input
3 ;; 3 is output
但在编译后sbcl --load testing-func.lisp
,我得到的输出与输入“乱序”。
@Repl has Started@
1 ;; input
;; output
2 ;; input
1 ;; output
3 ;; input
2 ;; output
我真的不知道为什么或如何会发生这种情况。loop
我还尝试通过使用递归和使用let*
or来摆脱and 严格顺序funcall
,但出现了相同的现象,这意味着我对编译有根本性的误解。
与编译无关。
Common Lisp Streams 可以被缓冲。在让用户输入之前,您需要确保输出已到达用户手中。
请参阅Common Lisp 中的函数
FORCE-OUTPUT
和。导致任何挂起的输出写入输出设备,然后返回。FINISH-OUTPUT
FINISH-OUTPUT
您需要
FINISH-OUTPUT
在输出完成后调用您想要到达的输出设备。