Comment by _ZeD_

Comment by _ZeD_ 6 months ago

2 replies

> In programming language lingo, code + data combo is called a closure.

in my day code + data was called a class :)

(yeah, yeah, I know closure and class may be viewed as the same thing, and I know the Qc Na koan)

vanschelven 6 months ago

For those not in the know:

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.

https://people.csail.mit.edu/gregs/ll1-discuss-archive-html/...

vbezhenar 6 months ago

Class is a set of functions. Closure is one function.

In old Java, it really was a class. In new Java, I'm not 100% sure anymore, but with verbose syntax it'll be an class. I made it as verbose as possible:

  Function<Integer, Integer> adder(int x) {
    class Adder implements Function<Integer, Integer> {
      int x1;
      @Override Integer apply(Integer y) {
        return x1 + y;
      }
    }

    Adder adder = new Adder();
    adder.x1 = x;
    return adder;
  }
and a bit less verbose with modern Java:

  Function<Integer, Integer> adder(int x) {
    return (y) -> x + y;
  }
So closure could be definitely be considered as a very simple class.