是否可以在球拍中同时获取对象的所有字段?
我基本上想将一个对象转换为一个哈希表,其中字段名作为键,字段值作为值。
我找到了一个函数(field-names obj),但后来我不知道如何使用返回的字段名从 obj 中获取值。该函数get-field
可用于获取字段的值,但我不知道如何将其与值一起使用:
> (define x% (class object% (init-field x y) (super-new)))
> (define obj (make-object x% 1 2))
> (get-field x obj)
1
> (field-names obj)
'(y x)
> (define field-name (second (field-names obj)))
> field-name
'x
> (get-field field-name obj)
get-field: given object does not have the requested field
field name: field-name
object: (object:x% ...)
errortrace...:
context...:
/usr/lib/racket/collects/racket/private/class-internal.rkt:4906:0: obj-error29
/usr/lib/racket/collects/racket/private/misc.rkt:87:7