On 4/20/2012 8:27 AM, Nasser M. Abbasi wrote:
On page 42, it says:
"Unified type system (JDK 10+)
No more primitives, make everything objects"
I've seen very little discussion on this very important
subject.
What do the experts here think of the idea?
It's impossible. Whatever they mean when they say "remove primitives"
cannot possibly be what those words actually mean. Just think, how would
it be possible to state a = a + 1 without the number 1? Ok, so you can
use .add(Integer x). But how precisely do you call it? .add(1)? There's
still a 1. And what's worse is if numbers act like objects, which
introduces it's own dangerous problem. Is the number 5 really 5, or is
it something else? Treating primitives like objects, without them
actually being objects, is UN-neccessary and confusing.
5.length() or 5.size()? Well if 5 is an object I should be able to
over-ride it.
Class 6 Extends 14 {}
Is that what they mean, or do they mean they will just treat numbers
/like/ objects? I guess I need more information. In the absence of a
good reason, I don't believe such a change will ever actually make it
into Java.
However they do things there will be problems and concerns. What you
talk about is not likely to be one of them. In a system where all things
are objects, numeric literals are objects: they are syntactic sugar.