Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-

Objects are poor man's closures

Name: Anonymous 2006-12-23 18:50

Discuss.

Name: Anonymous 2006-12-24 0:06

The venerable master Qc Na was walking with his student, Anton.  Hoping to prompt the master into a discussion, Anton said "Master, I have heard that objects are a very good thing - is this true?"  Qc Na looked pityingly at his student and replied, "Foolish pupil - objects are merely a poor man's closures."

Chastised, Anton took his leave from his master and returned to his cell, intent on studying closures.  He carefully read the entire "Lambda: The Ultimate..." series of papers and its cousins, and implemented a small Scheme interpreter with a closure-based object system.  He learned much, and looked forward to informing his master of his progress.

On his next walk with Qc Na, Anton attempted to impress his master by saying "Master, I have diligently studied the matter, and now understand that objects are truly a poor man's closures."  Qc Na responded by hitting Anton with his stick, saying "When will you learn? Closures are a poor man's object."  At that moment, Anton became enlightened.

Name: Anonymous 2006-12-25 2:35

>>2
So, neither are better?

logik++

Name: Anonymous 2006-12-25 21:17

You can easily do what you do with objects with closures, yet it's not always easy to do what you do with closures with objects.

Name: Anonymous 2006-12-25 21:30

>>4

Example?

Name: Anonymous 2006-12-26 1:42

generally private members in objects act like a closure.

let make an object with a struct and a closure (SML):

let new_x a =
  let a = ref a in
  {
     a_acc = fun () -> !a ;
     a_set = fun x  -> a:= x ;
     do = fun () -> succ a ;
  }

wow it looks like an object

lets do a closure using OO

class X {
   var a;
   var a_acc() { return a; }
   a_set(x) { a = x; }
   do() { a++ }
}

I think objects are just fine for what they do. Associating methods and data, exactly what closures do except we often get nice things like inheritance or easy syntax. (Also Ocaml does OO but I didn't feel like it)

Name: Anonymous 2009-01-14 12:38

LISP

Name: Anonymous 2009-08-17 0:03

Lain.

Name: Anonymous 2010-11-27 6:18

Name: Anonymous 2011-02-03 6:12

Name: Sgt.Kabu믐뮔kiman렅牘 2012-05-28 21:23

Bringing /prog/ back to its people
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy

Don't change these.
Name: Email:
Entire Thread Thread List