Allow default methods to override Object's methods
Ted Neward
ted at tedneward.com
Sun Mar 3 23:42:37 PST 2013
Brian--
I want to point out one counter-argument to the example you offered up, as a
general principle:
You said:
> Most people, when proposing a language feature, focus exclusively on the
> former, but in reality, the second is often more important. As an
example,
> take as a proposed language feature "allow direct access to raw object
> pointers." Clever people can come up with endless examples of what they
> could do with raw pointers, whether to improve performance or to simplify
> the writing of frameworks and libraries. But, it should be obvious that
> allowing raw access to pointers would also do a tremendous amount of
> damage; programs would be less reliable, less secure, and for most
programs
> (those not written by performance experts) less performant (because giving
> users access to raw pointers cripples many optimizations the VM could
> otherwise make.)
>
In this particular case, the C# language (and, indeed, the .NET platform as
a whole) has allowed direct pointer access, as well as "managed pointer"
access (meaning, the runtime is fully aware of the fact that this pointer is
owned from somewhere outside the runtime, but it still can make certain
assumptions and adjustments, as opposed to "unmanaged pointer"s, which it
has to treat like the black box as you describe above) for twelve years now,
and I can report with definitive assurance that .NET applications are just
as stable as Java ones, even those that interface with extra-VM access.
(I pause for the whole raft of individual examples about misbehaving .NET
applications to come from various folks on this list--to which I will
respond with, "And Eclipse has never crashed on you? JBoss? No Java program
ever died? No? Then let's speak to generalities and not specifics for the
moment.")
I know your point isn't about pointer access; you're using it as an example.
But your point serves dual-duty, because this point itself is an example of
the general point I want to make: there's a lot of prior art out there that
I'm sure you guys considered during your deliberations on the subject, but
unless that prior art is mentioned as part of the discussion, it becomes too
easy for those who aren't on the EG to assume that you missed it as an
example that contradicts the EG's assumptions, conclusions, or rationale. It
would be helpful when discussing these points if those prior art exemplars
can be highlighted, so people can have more faith that the decision "X"
(whatever it is, be it Object methods or lambdas implementing abstract
classes or what-have-you) was examined in the light of exemplars "Y" and "Z"
from other platforms, and here's what those other platforms had to accept as
consequences that the EG felt were not acceptable in the Java ecosystem.
Ted Neward
Leading, Speaking, Consulting, Writing
http://www.tedneward.com
> -----Original Message-----
> From: lambda-dev-bounces at openjdk.java.net [mailto:lambda-dev-
> bounces at openjdk.java.net] On Behalf Of Brian Goetz
> Sent: Sunday, March 03, 2013 2:42 PM
> To: Howard Lovatt
> Cc: lambda-dev at openjdk.java.net
> Subject: Re: Allow default methods to override Object's methods
>
> > However a couple of times I have wanted to override Object's methods,
> i.e.
> > toString, equals, and hashCode. For example in a toy stream library I
> > am playing with:
> >
> > ...
> >
> > Do you think the above is a genuine example or an outlying case?
>
> The topic of whether default methods should be allowed to override Object
> methods was one that was discussed extensively in the EG. While I can
> definitely sympathize with the desire for things to work this way, really
what
> this boils down to is "I want default methods to be more like traits than
they
> are." And again, I can sympathize with that -- traits are useful. (If we
were
> designing Java from scratch today, we would have certainly come to
> something different than the current JDK 8 design -- historical
constraints do
> matter.) But I believe the outcome, if we went this way, would be worse.
>
> When evaluating a language feature, you need to examine both the cost and
> the benefit side of the proposal.
>
> Benefit: how would having this feature enable me to write code that is
> better than what I can write today.
>
> Cost: how would having this feature enable other people to write WORSE
> code than they might write today.
>
> Most people, when proposing a language feature, focus exclusively on the
> former, but in reality, the second is often more important. As an
example,
> take as a proposed language feature "allow direct access to raw object
> pointers." Clever people can come up with endless examples of what they
> could do with raw pointers, whether to improve performance or to simplify
> the writing of frameworks and libraries. But, it should be obvious that
> allowing raw access to pointers would also do a tremendous amount of
> damage; programs would be less reliable, less secure, and for most
programs
> (those not written by performance experts) less performant (because giving
> users access to raw pointers cripples many optimizations the VM could
> otherwise make.)
>
>
> So, with that preamble, why did we decide to do it the way we did?
>
> 1. Secondary scope. The key goal of adding default methods to Java was
> "interface evolution", not "poor man's traits." It is a significant
dividend that
> they enabled many forms of trait-like behavior, and we were careful to
> support this where the costs were within bounds, but this proposed
> behavior was certainly not at all within the scope of "interface
evolution." So
> it is strictly a "nice to have" if we can get it cheaply enough, not a
goal.
>
> 2. Adds complexity. Supporting this behavior had the cost of making the
> inheritance model more complicated. This is definitely a negative; there
is
> already a lot of fear that "multiple inheritance" (as if Java didn't
already have
> multiple inheritance (of types) from day 1) will make Java a lot more
> complicated. A great deal of effort went into coming up with the simplest
> possible rules for how implementation inheritance will work, which are:
>
> Rule #1: Classes win over interfaces. If a class in the superclass chain
has a
> declaration for the method (concrete or abstract), you're done, and
defaults
> are irrelevant.
>
> Rule #2: More specific interfaces win over less specific ones (where
> specificity means "subtyping"). A default from List wins over a default
from
> Collection, regardless of where or how or how many times List and
Collection
> enter the inheritance graph.
>
> Rule #3: There's no Rule #3. If there is not a unique winner according to
the
> above rules, concrete classes must disambiguate manually.
>
> Allowing defaults to override Object methods would interfere with the
> simplicity of "Class wins". And the obvious adjustments ("Class wins
except
> Object") run into subtle complexities when you follow them through, which
> require further adjustments, the result being that this adds complexity to
the
> inheritance model. This did not seem like the best way to spend our
limited
> complexity budget.
>
> 3. Really only makes sense in toy examples. When designing default
> methods, I talked to a number of folks like yourself who asked for this
> feature. And I asked them to give me an example. Invariably, the example
> was a type like List. And invariably, after some digging, it would become
clear
> that this feature only makes sense in situations where the type in
question
> was exclusively single-inherited. Giving people a feature that is
essentially
> multiple inheritance of behavior, but which breaks if you actually *use*
> multiple inheritance, does not seem smart.
>
> At root, the methods from Object -- such as toString, equals, and hashCode
-
> - are all about the object's *state*. But interfaces do not have state;
classes
> have state. These methods belong with the code that owns the object's
> state -- the class.
>
> Further, it is even harder to ensure compliance with the contracts of
equals
> and hashCode when they are provided in an interface. The common
> equals/hashCode pitfalls outlined in Effective Java become even more
likely
> to bite you if you try to do this -- as if this wasn't already hard
enough.
>
> 4. It's brittle. Methods like equals are really fundamental; you don't
want a
> classes equals() behavior changing out from under you when a library is
> rev'ed and someone adds an equals() implementation to some interface that
> you indirectly inherit from nine levels away. But this is exactly what
would
> happen if someone added an equals() method to an existing interface, if
its
> subtypes didn't provide their own equals().
>
> The decision about equals/hashCode behavior is so fundamental that it
> should belong to the writer of the class, at the time the class is first
written,
> and changes to the supertype hierarchy should not change that decision.
If
> defaults were inherited in this way, it would totally push us in the wrong
> direction here.
>
>
> So, bottom line -- this seems like an "obvious" feature at first, but when
you
> start digging, the result is that it makes the language more complicated,
> invites lots of new corner cases, and doesn't really work all that well
outside
> of the "obvious" examples.
More information about the lambda-dev
mailing list