Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果这是一个愚蠢的问题,请原谅,但我只想知道他们到底是什么意思?
(define-struct squar (x y size outline c))
“为 Square 类添加解释”
我试过在网上查这个,但没有。
这 (make-square 10 20 30 "solid" "red") 评估为一个结构。
这个结构代表什么?
问题的答案,是一种解释。
一种合理的解释是,上面的值表示一个 30x30 的正方形,其左上角的屏幕坐标为 (10,20),其内部被红色填充(它是实心的)。