Re: Interface inheritance vs Implementation inheritance.
Daniele Futtorovic wrote:
On 2008-02-20 02:47 +0100, Patricia Shanahan allegedly wrote:
....
What's different this time? Does Java really have *exactly* the right
amount of voodoo, so that adding any more will take it past the
current sweet spot?
You're right, so maybe the emphasis shouldn't be on /how much/ voodoo,
but on /how/ voodoo. The point would be to find a minimal set of
building blocks, of basic entities, which encapsulate the voodoo, and to
keep the set minimal. Especially not to inflate it with synonyms which
make no semantical addition.
All you really need is a Turing machine. Its basic entities are a state
machine, a current state, and a tape with a single read/write head. Or,
to be a bit more practical, consider the original MIPS instruction set.
Its assembly language is very simple, with few basic entities.
However, I find it far easier to express my programs in Java than in any
assembly language.
I like the enhanced for-loop. If I just want to do something to every
element in a collection an enhanced for-loop expresses my intent
more directly and clearly than an Iterator idiom.
Not functionally so, for functionally, you are using an Iterator. What's
happened is that, from the point of view of the code, you've introduced
a new entity which, though linguistically distinct, makes no semantic
addition. It's a synonym.
Sure. Even assembly languages add new entities which, though
linguistically distinct, make no semantic addition. For example, "nop"
is often provided as a mnemonic, but mapped to some existing operation
that does nothing. What's wrong with that, as long as it makes the
resulting programs a clearer expression of the programmer's intent?
Patricia