Common Lisp의 컴파일 타임 유형 검사: 작은 실험
2469 단어 typecommonlisp
(defpackage static1
(:use #:cl))
(in-package :static1)
(declaim (ftype (function (string string) string) concat-strings))
(defun concat-strings (a b)
(format nil "~A --- ~A" a b))
(declaim (ftype (function (fixnum fixnum) string) concat-nums))
(defun concat-nums (a b)
(concat-strings a b))
그런 다음 다음 명령을 실행했습니다.
sbcl --noinform --eval '(compile-file "static1.lisp")' --quit
SBCL은 다음과 같은 경고를 표시했습니다.
; caught WARNING:
; Derived type of STATIC1::A is
; (VALUES FIXNUM &OPTIONAL),
; conflicting with its asserted type
; STRING.
; See also:
; The SBCL Manual, Node "Handling of Types"
따라서 Common Lisp 구현인 SBCL은 컴파일 타임에 유형을 확인할 수 있습니다. 어쨌든 프로그래머는 경고를 읽어야 합니다.
Reference
이 문제에 관하여(Common Lisp의 컴파일 타임 유형 검사: 작은 실험), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/veer66/compile-time-type-checking-in-common-lisp-a-small-experiment-427텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)