Yielding blocks

Dimitris Paltatzidis dcrystalmails at gmail.com
Thu Mar 3 23:22:19 UTC 2022


Methods, ignoring their arguments, form 2 categories:
1. Those that do not return a value (void).
2. Those that do.

Now, stripping away their signature, we get anonymous methods. Java supports
category 1, "blocks". They can be local, instance initializers or even
static.
On the other end, category 2 is missing. Consider the examples below of
trying
to initialize a local variable, with a complex computation.

A. (Verbose and garbage producing)
Type a = ((Supplier<Type>) () -> {
    .
    .
    return .. ;
}).get();

B. (The hack, hard to reason)
Type a = switch (0) {
    default -> {
        .
        .
        yield .. ;
    }
};

C. (Does not exist)
Type a = {
    .
    .
    yield .. ;
}

All of them are equal in power, yet C is compact and readable. Of course, no
one will resort to A or B, instead they will compute in the same block as
the
variable in question (a). Unfortunately, that has a few drawbacks:
1. Pollution of the block with temporary variables that won't be needed
further
   down the line, and at the same time, prohibiting the usage of the same
name,
   especially if they were final.
2. Hard to reason where statements and computations start and end, without
   resorting to comments.

Now, with limited power we can have:

D. (Legal)
Type a; {
    .
    .
    a = .. ;
}

Actually D has fewer characters than C, for small enough variable names. It
also
solves the pollution problems stated above. But, as already mentioned, it
lacks
in power. We can't use it in places where only 1 statement is permitted,
like
computing the parameter of a method inside its parenthesis.

With C, we can even initialize instance variables (or static) that require
multiple statements, without resorting to an instance initializer block.
Basically, computing a value ad-hoc that fits everywhere.

The block right of the arrow -> of a switch case is basically it. It just
needs
a promotion to stand on its own.


More information about the amber-spec-comments mailing list