Slashdot Mirror


Java SDK 1.5 'Tiger' Beta Finally Released

kingkola writes "Finally, after about two years of development, the Beta for Java SDK 1.5, aka Tiger, has been released. Features added in this edition include generics support, autoboxing of primitives, syntactic sugar for loops, enumerated types, variable arguments, sharing of memory between multiple VMs and a bunch of other bugfixes, enchancements, etc."

10 of 602 comments (clear)

  1. it does work if you do this... by Anonymous Coward · · Score: -1, Offtopic

    javac -source 1.5 filename

  2. I MISS JON KATZ!!! by Anonymous Coward · · Score: -1, Offtopic

    C'mon fellow slashdotters,

    dont you miss the lovely prose of that great man who had his finger on the pulse of the geek nation>

    I think we should all subscribe, so that Taco can hire him back and buy him a BMW

    Thank you - that is all

    1. Re:I MISS JON KATZ!!! by Anonymous Coward · · Score: -1, Offtopic

      how is this offtopic?

      the poster has a good point - Jon Katz added a bit of class to this shabby website

    2. Re:I MISS JON KATZ!!! by Anonymous Coward · · Score: -1, Offtopic

      FUCK YOU and FUCK JON KATZ..

      anyway.. he's still here. They just call him Honestpuck instead.

      FUCK YOU!

      FUCK YOU!!

      fuck OFF and DIE you mmotherfucking fuck fuck fuck.

  3. Mac by Anonymous Coward · · Score: -1, Offtopic

    Darn it, the Mac just got JDK version 1.4.2...

    http://www.apple.com/macosx/features/java/

  4. come on down by Anonymous Coward · · Score: -1, Offtopic

    yeah this is it CLICK NOW!

  5. FOAD by Anonymous Coward · · Score: -1, Offtopic

    fuck off and die.. all of you

    Slow Down CowboyNeil, you fucking fat fuck!!!

    Slashdot requires you to wait 2 minutes between each successful posting of a comment to allow everyone a fair chance at posting a comment.

    It's been -324231342 minutes since you last successfully posted a comment

    Chances are, you're behind a firewall or proxy, or clicked the Back button to accidentally reuse a form. Please try again. If the problem persists, and all other options have been tried, contact the site administrator.

  6. Re:an annoying quirk by TheSunborn · · Score: 0, Offtopic

    The reasen this can't be allowed is very simply: Look at this:

    ArrayList s = new ArrayList();
    ArrayList t = s; // Does not compile, but asume that it would.

    t.addElement(new Float(10.5)); // Now we have added a float to a list which can ONLY contain integers. Not good.

    Integer i= s.elementAt(0); // Class cast exception.

    Allowing t=s would ruin the entire "You are sure your collection only can contain what it say it contains, and we check that at compile time"

  7. Re:an annoying quirk by dnoyeb · · Score: 0, Offtopic

    What do you mean it does not compile??? Of course it compiles. What are you talking about? Did you mis-type?

    Since when did you DEFINE that the arrayList could only contain integers??? I see no such constraint.

  8. Re:an annoying quirk by tdelaney · · Score: 0, Offtopic
    i = [1, 2, 3] # array of integer
    n = i # array of number
    Seems like other languages support it ...