17 Classes and Objects
(require scramble/class) | package: scramble-lib |
syntax
(init-private init-decl ...)
> (define person% (class object% (init-field name) (init-private [id #f]) (super-new))) > (define alice (new person% (name "Alice") (id 1001))) > (get-field name alice) "Alice"
> (get-field id alice) get-field: given object does not have the requested field
field name: id
object: (object:person% ...)
|
method
(send a-constructor-style-printable get-printing-class-name)
→ symbol? Returns a symbol to be used as the class name when printed.
method
(send a-constructor-style-printable get-printing-components)
→
(listof symbol?) (listof any/c) boolean? Returns (values names values more?), which control the printing of the object’s contents as follows:The names represent the names of the object’s fields—
or more properly, its init arguments. The values are the corresponding values; the two lists should have the same length. If more? is true, then ... is printed after the initialization arguments to indicate that the object contains additional state not represented by the printed output.
Examples:
> (define friendly-person% (class* person% (constructor-style-printable<%>) (inherit-field name) (super-new) (define/public (get-printing-class-name) 'friendly-person%) (define/public (get-printing-components) (values '(name) (list name) #t)))) > (define bob (new friendly-person% (name "Bob"))) > bob (new friendly-person% (name "Bob") ...)
> (list bob) '(#<friendly-person%: (name "Bob") ...>)
> (write bob) #<friendly-person%: (name "Bob") ...>
|
> (define expressive-person% (class* friendly-person% (print-quotable-never<%>) (super-new) (define/override (get-printing-class-name) 'expressive-person%))) > (define kristen (new expressive-person% (name "Kristen"))) > kristen (new expressive-person% (name "Kristen") ...)
> (list kristen) (list (new expressive-person% (name "Kristen") ...))
> (write kristen) #<expressive-person%: (name "Kristen") ...>
|
> (define obscure-person% (class* friendly-person% (print-quotable-always<%>) (super-new) (define/override (get-printing-class-name) 'obscure-person%))) > (define jeff (new obscure-person% (name "Jeff"))) > jeff '#<obscure-person%: (name "Jeff") ...>
> (list jeff) '(#<obscure-person%: (name "Jeff") ...>)
> (write jeff) #<obscure-person%: (name "Jeff") ...>
|