2013-10-03 39 views

回答

8

類名稱也被輸入名稱,所以:

(typep * 'a) 

整合類型和類http://clhs.lisp.se/Body/04_cg.htm

或者你可以這樣做:

(defmethod is-an-a-p ((x a)) 
    t) 
(defmethod is-an-a-p ((x t)) 
    nil) 
相關問題