3
จะทราบได้อย่างไรว่าจะใช้อัญประกาศเดี่ยวข้างหน้าชื่อตัวแปรเมื่อใดหรือไม่
ฉันมีด้านล่าง: (setq some-variable "less") ฉันกำลังสับสนว่าทำไมผมต้องใช้คำพูดเดียวกับแต่ไม่ได้มีboundpbound-and-true-p ตัวอย่างที่ 1: (when (boundp 'some-variable) (message "some-variable is %s" some-variable)) ผล: "บางตัวแปรน้อย" ตัวอย่าง 2a: (when (bound-and-true-p some-variable) ;; Note that using single-quote causes error (message "some-variable is %s" some-variable)) ผล: "บางตัวแปรน้อย" ตัวอย่าง 2b: (when (bound-and-true-p 'some-variable) ;; Note that using single-quote causes error (message "some-variable …