Slashdot Mirror


Sun to Add Variance to Java in 1.5?

Ahe writes "I have been working on a joint project between Sun Microsystems, The University of Aarhus, and The Alexandra Institute. As you might know, Sun has for long been commited to adding generics to Java. Our project was to extend this with variance annotations for more flexible typing of parameterized classes and arrays. Recently Sun has released the project result as a new prototype with variance. If you like variance, please vote for this bug."

1 of 55 comments (clear)

  1. Re:Definitely a bug! by elflord · · Score: 5, Interesting
    Generics are at best a trade-off: compile-time type safety in exchange for less readable code.

    Given the choice between explicitly using a parameter, and using a nebulous "Object", I'd say that the template code is easier to read, because the parameter conveys more meaning than the word "object" (which offers no clue about what "type" is being used)

    Where C++ has no safety without generics, Java has runtime safety.

    Wrong. See dynamic_cast.

    As for readability, C++ has two major benefits over Java: a preprocessor and typedefs

    Shows how much you know -- you've named what are arguably two of the most botched legacy features of C++.

    Without at least one of these features, generics make code almost unreadable.

    This is not true. What makes code difficult to comprehend is complexity (allocaters, classes with several parametrised types, etc). Fortunately, C++ offers features that make complexity manageable (though typedefs don't deal with templates as well as they should)

    (I say mostly, because using STL with threads in cross-platform development is a recipe for disaster

    No, naively assuming that every STL implementation on every platform is thread safe is a recipe for disaster. Well, duh! The same is true even for straight C code -- you need to use thread safe versions of the library functions.