ラケットでオブジェクトのすべてのフィールドを同時に取得することは可能ですか?
基本的に、オブジェクトをキーとしてフィールド名、値としてフィールド値を持つハッシュテーブルに変換したいと思います。
関数(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