Fundamentals of Computer Science I (CS151.02 2007S)
[Skip to Body]
Primary:
[Front Door]
[Syllabus]
[Glance]
[Search]
-
[Academic Honesty]
[Instructions]
Current:
[Outline]
[EBoard]
[Reading]
[Lab]
[Assignment]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Projects]
[Readings]
Reference:
[Scheme Report (R5RS)]
[Scheme Reference]
[DrScheme Manual]
Related Courses:
[CSC151 2006F (Rebelsky)]
[CSC151.01 2007S (Davis)]
[CSCS151 2005S (Stone)]
Back to Variable-Arity Procedures. On to An Object Example.
This outline is also available in PDF.
Held: Monday, April 30, 2007
Summary: Today we consider how to make objects that encapsulate values and provide capabilities for manipulating those values.
Related Pages:
Notes:
Overview:
(define greeter (lambda (message) (cond ((eq? message ':enter) (display "Hello") (newline)) ((eq? message ':leave) (display "Goodbye") (newline)) (else (error "Unknown Message")))))
> (greeter ':enter)Hello > (greeter ':leave)Goodbye > (greeter ':sleep)Unknown Message
let
outside the lambda
for the procedure.
(define fixed-value (let ((value 5)) (lambda (message) (cond ((eq? message ':get) value) (else (error "fixed-value:" "unknown message"))))))
(define incrementable-value (let ((value (vector 0))) (lambda (message) (cond ((eq? message ':get) (vector-ref value 0)) ((eq? message ':add1!) (vector-set! value 0 (+ 1 (vector-ref value 0)))) (else (error "fixed-value:" "unknown message"))))))
> (incrementable-value ':get) 0 > (incrementable-value ':add1!) > (incrementable-value ':get) 1
Back to Variable-Arity Procedures. On to An Object Example.
[Skip to Body]
Primary:
[Front Door]
[Syllabus]
[Glance]
[Search]
-
[Academic Honesty]
[Instructions]
Current:
[Outline]
[EBoard]
[Reading]
[Lab]
[Assignment]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Projects]
[Readings]
Reference:
[Scheme Report (R5RS)]
[Scheme Reference]
[DrScheme Manual]
Related Courses:
[CSC151 2006F (Rebelsky)]
[CSC151.01 2007S (Davis)]
[CSCS151 2005S (Stone)]
Disclaimer:
I usually create these pages on the fly
, which means that I rarely
proofread them and they may contain bad grammar and incorrect details.
It also means that I tend to update them regularly (see the history for
more details). Feel free to contact me with any suggestions for changes.
This document was generated by
Siteweaver on Thu Sep 13 20:54:55 2007.
The source to the document was last modified on Thu Jan 18 12:30:13 2007.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2007S/Outlines/outline.49.html
.
You may wish to
validate this document's HTML
;
;
http://creativecommons.org/licenses/by-nc/2.5/
or send a letter to Creative Commons, 543 Howard Street, 5th Floor,
San Francisco, California, 94105, USA.