Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Java 1.5 vs C#

Posted by Hemos on Mon Oct 11, 2004 11:34 AM
from the battle-rages-on dept.
SexyFingers writes "Sun released Java 1.5. The non-API stuff that they've added made it finally "catch-up" with C# - since both languages are built to support OOP from the ground-up, their constructs become almost identical as additional OOP "features" are supported. So if you're doing C# and your foundations in OOP are rock-solid, there really isn't any difference whether you're coding C# or Java."

Here's the list of enhancements to the Java Language:

  1. Generics (C# 2.0 already supports this)
  2. Enhanced For-Loop (the foreach construct in C# 1.0, duh!)
  3. Autoboxing/Unboxing (C# 1.0 already has this, everything is an object, even the primitives - not really, but they do it so well...)
  4. Typesafe Enums (again C# 1.0 already implemented this, but I think they've added a little bit more twist in Java, that its actually a better implementation)
  5. Varargs (C# 1.0's params construct, ellipsis construct in C++)
  6. Static Import (I don't know if C# 1.0 has this, or C#2.0, but C# has a construct for aliasing your imports - which is way cooler. Static Import, actually promotes bad coding habits IMHO)
  7. Metadata/Annotations (this is C# 1.0's Attributes, Sun's upturned noses just gave it a fancier name - also, C#'s implementation is better and more intuitive)

They've beefed up the API some, and integrated several packages with the regular JSDK that used to be a part of a separate package or installation ---in my NSHO, the Java API has become bloated...

At this point (even before Whidbey) the deciding factor (as always) for Enterprise work, when choosing a language platform, should be the support it has behind it, in terms of IDE, tools, api, and longevity of the vendor pushing it (forget the OpenSource crap argument, those guys are too in love with Perl, Python, and Ruby - Java could become the child nobody wants to talk about if Sun dies) - right now that's C# and the .NET Framework ---

If you ask Paul Graham though, both language would be utter crap and fit only for idiots :) http://www.paulgraham.com/gh.html [I'm exaggerating, so hold off on those flames.]

This discussion has been archived. No new comments can be posted.
Java 1.5 vs C# | Log In/Create an Account | Top | 790 comments (Spill at 50!) | Index Only | Search Discussion
Display Options Threshold:
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
(1) | 2
  • I code C# for a living (Score:4, Insightful)

    by carpe_noctem (457178) on Monday October 11 2004, @11:36AM (#10494240)
    (http://www.example.com/ | Last Journal: Tuesday October 15 2002, @12:42PM)
    ...and let me tell you, java doesn't have to do that much to "catch up" to it.
    • Re:I code C# for a living by danheskett (Score:2) Monday October 11 2004, @11:38AM
    • Re:I code C# for a living (Score:5, Interesting)

      by LnxAddct (679316) <sgk25@drexel.edu> on Monday October 11 2004, @12:13PM (#10494727)
      (http://krenzel.info/)
      I code in java on the side for some small business apps. I've also coded in C# and have used all of the MS Visual Stuido nonsense. Both languages are at a level that you can do just about anything with one that you can do with the other. So the deciding factors come down to really which is a better platform to develop on and cross platform compatibility (in some cases the latter isn't an issue, but it is for me). As far as IDE's go,I don't get what people like about Visual Studio, especially VS.net. I enjoyed VS 6.0 much better the VS.net, regardless I have since moved to a strictly open source platform and only use Windows for testing. When I did do C# coding, I preferred using vim or Sharpdevelop. I really can't stand VS.net. Anyway, Java, imho, has superior IDEs (some may argue that IDEs reinforce bad programming, etc..., but if used *correctly* they can significantly increase productivity) Eclipse puts Visual Studio to shame in many areas. Eclipse is an amazing IDE and made programming fun again. Another great IDE for Java, that puts great focus on GUI dev, Web App dev, and Mobile phones, is Net Beans. Both IDEs have very nice integrated features with a great tool selection and good plugin frameworks. I use both interchangeably depending upon specific tasks and projects. So in my oppinion as far as having a good platform to work on, Java is superior. Next is cross platform compatibility. Although Mono is making leaps and bounds, Java wins hands down on this. It gives my customers more options and major open source software foundations like the Apache foundation actively work on many java based enterprise applications. This allows my customers to also have low start up and implementation costs.No real need for further discussion on that. Another area where I prefer java is for distributing applications via WebStart. It makes life very easy, in many areas including maintenance and deployment. This is just my 2 cents. I don't really see why anyone would use C#, I mean they took Java and improved, and now Java has taken both its past and C# and improved itself :/
      Regards,
      Steve
      [ Parent ]
      • Re:I code C# for a living by spacecowboy420 (Score:1) Monday October 11 2004, @12:22PM
      • Re:I code C# for a living by CaptnMArk (Score:3) Monday October 11 2004, @12:55PM
        • Re:I code C# for a living by Bloater (Score:2) Monday October 11 2004, @01:23PM
        • Re:I code C# for a living (Score:5, Informative)

          by cakoose (460295) on Monday October 11 2004, @02:15PM (#10496053)
          (http://cakoose.com/wiki/)
          C# vs Java, mostly a tie (c# good: ref and out parameters, indexers, foreach; c# bad: properties, operator overloading)

          While 'ref' paramters are debatable, 'out' parameters are stupid. They should have created a way to return multiple values from a function. Allowing first class tuples would have been the correct way to do this (in most C-style languages, tuples are allowed as arguments to functions and disallowed everywhere else). Adding tuples would also have eliminated the need for the hacked up delegate functionality. Then again, Java doesn't have any equivalent functionality, so it could be seen as an advantage for C#.

          Operator overloading is a good thing. It can be abused, but so can anything else. Removing operator overloading doesn't even come close to making it impossible to write obfuscated code. There are many situations where operator overloading makes things a lot simpler.

          Properties are also good. Instead of identifying them through string matching ("get*", "set*"), language-level support for properties allows more accurate data type modelling. In the end, however, the CLR doesn't really have true support for properties. They implement them as methods (like Java, except at a lower level so most programmers don't have to care about it). This implementation mistake resulted in different opcodes for field access and property access, which means you cannot switch between fields and properties without changing the class's public interface (and breaking binary compatibility with client code). It's still better than what Java does...

          Function pointers and anonymous functions. This has got to be the biggest improvement over Java. Unfortunately, class libraries were already designed before the anonymous function feature so they probably wont be designed to take advantage of it. Also, VB and C++ are probably holding things back because, as everyone knows, "language agnostic" is just a euphemism for "lowest common denominator".

          You also forgot generator functions. They make it easier to write pull-style classes (a "pull" XML parser, for example). Though it isn't as powerful as full-blown continuation support, I think it'll still be useful for many coding tasks.

          C# has more comprehensive generics support (aside from variance). Though both languages made the mistake of allowing arrays to be fully covariant (ArrayStoreException), Java got screwed when they decided not to maintain dynamic type information for generic type parameters. This limits the use of generics in often confusing ways. Type erasure isn't a problem in languages that have a good enough type system to avoid resorting to dynamic typing (like ML or Haskell). But C# and Java do not have good enough type systems and the C# people recognized that and chose to keep the dynamic type information around.

          C# is better than Java in almost every way. Java has better enums and support for covariant and contravariant generic type parameters, but that's about it.

          [ Parent ]
          • Re:I code C# for a living by IIEFreeMan (Score:2) Monday October 11 2004, @02:58PM
            • For covariant and contravariant exist several definitons depending on context (inheritance versus template parameters, e.g.)

              Suppose you have a class like this:

              class A {
              A method() { return new A() }
              }

              And another class like this:
              class B extends A {
              B method() { return new B() }
              }

              This construct is called covariant. The class B is ingeriting from A, while the method method() is overwritten in B. Not only is the mthod redefined but also the return value is. As it is redefined to the taype of the class, this is called covariant.

              If the method in A would return a B and the method in B an A, it would be called contravariant.

              For template parameters there are similar definitions, but they are a bit more complex.

              angel'o'sphere
              [ Parent ]
            • Re:I code C# for a living by elgaard (Score:3) Monday October 11 2004, @08:21PM
            • 1 reply beneath your current threshold.
          • Re:I code C# for a living by SnprBoB86 (Score:3) Monday October 11 2004, @04:17PM
          • Operator overloading (Score:4, Informative)

            by evilpenguin (18720) on Monday October 11 2004, @06:25PM (#10498366)
            Say Amen!

            Just because operator overloading can be used for evil is no reason to throw the baby out with the bathwater.

            Java lacks a Currency class, so I wrote a Money class some time ago that I use for common financial calculations, and it takes care of the pesky problem (and newbie mistake) of using floating point types for money.

            BUT, in Java, you have to have add(), sub(), mult(), and div() methods. Reading RPN style caclulations consisting of sequenced and nested method calls instead of algebraic operators is painful. Operator overloading is wonderful in those cases.

            Operator overloading certainly can be evil: What does it mean to increment an Employee? Do I really want to know? But for new types that you can actually do algebra with, it is quite helpful.

            And there are other cases.

            In my C++ days I wrote a FileHash class that kept an index of offsets to the start of each text line in a text file. Then I overloaded the array subscript operator so that a text file could used like an array of char pointers (or a String class if you liked). That was a perfectly good use of overloading.

            Moreover I think overloading the array subscript on ordered collections also makes perfect sense.

            I often wish Java had this feature. I agree with every simplifying choice they made except this one.
            [ Parent ]
          • Re:I code C# for a living by Anonymous Coward (Score:1) Monday October 11 2004, @10:02PM
          • Re:I code C# for a living by kaffiene (Score:3) Monday October 11 2004, @10:09PM
          • Tuples? I Haven't Heard That in Years... by LifesABeach (Score:1) Tuesday October 12 2004, @10:31AM
          • Re:I code C# for a living by hotpotato (Score:1) Wednesday October 13 2004, @03:39PM
          • 1 reply beneath your current threshold.
      • Re:I code C# for a living by gooser23 (Score:3) Monday October 11 2004, @01:13PM
        • Re:I code C# for a living (Score:5, Informative)

          by swilver (617741) on Monday October 11 2004, @01:40PM (#10495671)
          Seriously, I tried most of the IDE's you mentioned and then some, but Eclipse just blows them all away. The fact that it builds a complete syntax tree of your project which can basically be queried in any way you see fit makes refactoring so easy. It can rename method calls for an entire project, add new parameters, reorder parameters, change return code, display what methods call what method in tree form (especially if you suspect the code is dead), displays lots of very useful compiler warnings (unused parameters, variables, methods, unneeded casts, often surprising how many you can find of those in non-Eclipse projects and the possible subtle bugs they introduce). That's just scratching the surface really... it's very evident that Eclipse was written by programmers for programmers, and even after using it for more than a year it still manages to surprise me :)
          [ Parent ]
        • Re:I code C# for a living by cduffy (Score:2) Monday October 11 2004, @02:24PM
        • Re:I code C# for a living by tyrione (Score:2) Monday October 11 2004, @02:39PM
        • Re:I code C# for a living by jenesuispasgoth (Score:1) Tuesday October 12 2004, @05:29PM
      • Re:I code C# for a living by rnd() (Score:2) Monday October 11 2004, @01:46PM
      • One Word by The Grassy Knoll (Score:1) Tuesday October 12 2004, @03:14AM
        • Re:One Word by LnxAddct (Score:1) Tuesday October 12 2004, @09:02AM
      • IntelliJ IDEA!!! by node159 (Score:2) Tuesday October 12 2004, @04:31AM
      • Re:I code C# for a living by fitten (Score:2) Monday October 11 2004, @01:04PM
      • 3 replies beneath your current threshold.
    • Re:I code C# for a living by WebfishUK (Score:3) Monday October 11 2004, @01:33PM
    • Re:I code C# for a living by Three Headed Man (Score:3) Monday October 11 2004, @01:46PM
    • Re:I code C# for a living (Score:5, Insightful)

      by GCP (122438) on Monday October 11 2004, @04:50PM (#10497508)
      And I was a member of one of the JCP expert groups that brought you Java 5.

      java doesn't have to do that much to "catch up" to it.

      Stated another way, Java 5 is still behind C#, to which I would agree.

      As to how far behind, that depends on what you value. Java's event handling/callback design is atrocious compared to the convenience of delegates. I would much rather pass a single method called OnAccountOverdrawn()to the event notifier than the Java style of making the whole class an instance of some interface, implementing stubs for all the useless methods of the interface, then implementing the one useful method--which will have a useless name like DoAction() that you can't change, then passing the object that contains the DoAction() method to the event notifier.

      And for many things such as generics, autoboxing, enums, etc. (I don't recall which ones specifically), there are actual semantic differences in the virtual machine for C#, whereas Java's knockoff versions are just syntactic sugar for the writing out the equivalent source code yourself. I AM in favor of syntactic sugar, but having the actual semantics available in the underlying runtime gives you additional advantages.

      Java's great advantage is its ubiquity, which is also an impediment to improvement. Sun's position was that it was pretty much finished with language improvements after Java 1.1 and would thereafter concentrate on libraries that would run on existing JVMs. New JVMs might run the code even better, but the old JVMs would still run it.

      Microsoft knew they had to do better, or nobody would switch. They did a lot of things better, and they seem committed to doing more, even if it means obsoleting their existing VMs. They have far more control over The (One) Platform and seem quite willing to make improvements to C# and the other .Net technologies that will require a VM upgrade.

      One catgegory of improvement they seem interested in is a way to make dynamic languages, like Python or Lisp, work REALLY well. Another is support for functional languages like Haskell or OCaml that have special needs of their own.

      And if they do it well, (my speculation now), they could even add some of the attractive features of those languages, languages I like more than C#, to C#, widening the gap with Java.

      Java might have a very hard time keeping up with C# improvements while anchored to existing runtimes, and letting go of the anchor would seriously impact its ubiquity, which is one way in which Java is vastly better than C#.

      I don't think it's a given that Java is going to catch up to C#. But if Mono and/or DotGnu don't succeed, it may not matter as Windows fades away (which I believe it will).
      [ Parent ]
    • Re:I code C# for a living by rtayek (Score:1) Monday October 11 2004, @11:58PM
  • Varargs? (Score:5, Funny)

    by American AC in Paris (230456) * on Monday October 11 2004, @11:37AM (#10494252)
    (http://www.snowplow.org/tom/)
    That sounds like it should be some Adams-esque race of semi-competent space pirates...
    • Re:Varargs? by Anonymous Coward (Score:1) Monday October 11 2004, @12:14PM
    • Re:Varargs? by worst_name_ever (Score:2) Monday October 11 2004, @12:34PM
    • Re:Varargs? by Anonymous Coward (Score:1) Monday October 11 2004, @01:09PM
    • 1 reply beneath your current threshold.
  • All in it together (Score:5, Interesting)

    How about a cross-compiler that takes advantage of this vendor competition in cooperation to combine both communities of programmers into one pool targeting either virtual machine?
  • Fix the link by eissimuf (Score:2) Monday October 11 2004, @11:37AM
  • I'm confused (Score:4, Insightful)

    by abrotman (323016) on Monday October 11 2004, @11:38AM (#10494269)
    Where's the story? Or is this just one person's interpretation of Java vs. C#?
  • Learn to write? (Score:5, Funny)

    by Palshife (60519) on Monday October 11 2004, @11:38AM (#10494277)
    (http://www.palshife.net/)
    I've never seen so many grammatical errors. You win.
  • what about... (Score:4, Funny)

    by syrinx (106469) on Monday October 11 2004, @11:38AM (#10494282)
    (http://slashdot.org/)
    and you're foundations in OOP is rock-solid

    What about our foundations in English?
    • Hey by gregarican (Score:2) Monday October 11 2004, @11:41AM
      • Re:Hey by Majik Sznak (Score:1) Monday October 11 2004, @01:23PM
        • 1 reply beneath your current threshold.
    • Re:what about... by JDevers (Score:2) Monday October 11 2004, @11:42AM
    • Re:what about... by yoyhed (Score:3) Monday October 11 2004, @11:44AM
  • flamebait (Score:4, Insightful)

    by Bert690 (540293) on Monday October 11 2004, @11:38AM (#10494284)
    It's times like this when you'd REALLY like the ability to mod the story itself as troll/flamebait!

    At this point (even before Whidbey) the deciding factor (as always) for Enterprise work, when choosing a language platform, should be the support it has behind it, in terms of IDE, tools, api, and longevity of the vendor pushing it (forget the OpenSource crap argument, those guys are too in love with Perl, Python, and Ruby - Java could become the child nobody wants to talk about if Sun dies) - right now that's C# and the .NET Framework ---

    • Re:flamebait by oniony (Score:3) Monday October 11 2004, @11:45AM
      • Re:flamebait by Anonymous Coward (Score:1) Monday October 11 2004, @11:49AM
      • Re:flamebait by 33degrees (Score:2) Monday October 11 2004, @12:33PM
        • Re:flamebait by cakoose (Score:2) Monday October 11 2004, @02:25PM
          • Re:flamebait by 33degrees (Score:2) Monday October 11 2004, @07:49PM
      • Re:flamebait (Score:5, Informative)

        by jeif1k (809151) on Monday October 11 2004, @12:58PM (#10495195)
        .NET in the enterprise is currently painful.

        It's not about the enterprise, it's about the desktop. Microsoft had to do something there because C++ and MFC and COM was seriously getting in the way of getting the job done. Java isn't even trying to compete seriously on the desktop, so C# wins by default on the desktop. And (crazy as those people may seem to you and me) Microsoft desktop application developers actually seem to like Visual Studio. If Microsoft can additionally win market share from Java in the enterprise, that's icing on the cake for them.
        [ Parent ]
        • Re:flamebait by Fnkmaster (Score:3) Monday October 11 2004, @01:28PM
        • Re:flamebait by aminorex (Score:2) Monday October 11 2004, @02:17PM
        • Re:flamebait by kaffiene (Score:3) Monday October 11 2004, @10:22PM
          • Re:flamebait by Trejkaz (Score:2) Monday October 11 2004, @11:17PM
            • 1 reply beneath your current threshold.
          • Re:flamebait by goonerw (Score:1) Saturday October 16 2004, @08:04PM
            • Re:flamebait by kaffiene (Score:2) Monday October 18 2004, @01:03AM
              • Re:flamebait by goonerw (Score:1) Monday October 18 2004, @04:32AM
              • Re:flamebait by kaffiene (Score:2) Monday October 18 2004, @05:06AM
            • Swing interfaces by ChunderDownunder (Score:1) Wednesday October 20 2004, @06:06AM
      • Re:flamebait by cablepokerface (Score:1) Monday October 11 2004, @01:15PM
      • Re:flamebait by That's Unpossible! (Score:2) Monday October 11 2004, @12:09PM
      • Re:flamebait by p2sam (Score:2) Monday October 11 2004, @12:50PM
        • Re:flamebait by ecotax (Score:1) Monday October 11 2004, @01:27PM
        • You're going to name it what?! (Score:5, Informative)

          by richever (238948) on Monday October 11 2004, @01:47PM (#10495750)
          Sometime in 1999 after I'd worked at Sun for about a year, a routine all-hands meeting was held for all of the Java Software division. JDK 1.1.8 was the current version of Java on the street and JDK 1.2 was in the works, almost ready for release. We sat there and listened to the usual rah-rah speaches from the divison's head honcho (can't recall who it was at the time), and then he introduced us to a marketing guy to tell us about the launch for JDK 1.2. As he begun talking he displayed a new slide on the project and it read, in all its powerpoint glory, 'Java 2000!' And he went on to say that the new JDK would be called, not Java 2, but Java 2000. Everyone in the audience started laughing hysterically. We all thought it was a big joke. I mean, Microsoft was on the verge of releasing Windows 2000, so you don't really mean.... Turns out this marketing guy didn't have much of a sense of humor. "I'm not joking", he said. The laughs and knee slappings turned into boos and hisses. Head honcho guy says something like the marketing guys have worked hard on this and that's the name they've choosen. The Q&A session was next and, boy, did both of these guys get an earful! Anyway, I can't say for sure, but I think that had it not been for the outrage and disbelief at that all-hands we'd be stuck with even weirder Java naming convenstions today.

          Rich
          [ Parent ]
          • Re:You're going to name it what?! (Score:4, Insightful)

            by p2sam (139950) on Monday October 11 2004, @05:35PM (#10497907)
            I would had prefer Java 2000 over Java 2. The first one is clearly meant to be used for marketing purposes ( I think you Sun guys call it branding ). The later is ambiguous. I can't tell if it's a marketing name or an engineering version name.
            [ Parent ]
        • Re:flamebait by BlackStar (Score:2) Monday October 11 2004, @09:33PM
      • 3 replies beneath your current threshold.
    • 1 reply beneath your current threshold.
  • Why again can't I mod a story as -1 Flamebait?

    --
    I'll pay you $10. Really. [slashdot.org]
  • Java 1.5 vs c# 2.0? (Score:5, Informative)

    by hpj (26910) on Monday October 11 2004, @11:41AM (#10494317)
    (http://henrik.org/)
    It's a bit unfair to compare the new Java 1.5 release with c# 2.0 since c# 2.0 is not due to be released until sometime Q2 or Q3 next year. But I do agree that before the 1.5 release Java had a lot of catching up to do to c#, but now c# is a bit behind (Mainly because of it's lack of support for generic classes which Java now supports).
  • Obligatory by DrSkwid (Score:1) Monday October 11 2004, @11:41AM
    • Re:Obligatory by cakoose (Score:2) Monday October 11 2004, @04:34PM
      • Re:Obligatory by DrSkwid (Score:2) Monday October 11 2004, @05:39PM
        • Re:Obligatory by cakoose (Score:2) Tuesday October 12 2004, @02:00AM
          • Re:Obligatory by DrSkwid (Score:1) Tuesday October 12 2004, @02:43AM
    • Re:Obligatory by kundor (Score:2) Monday October 11 2004, @12:26PM
    • Re:Obligatory by William Tanksley (Score:2) Monday October 11 2004, @12:29PM
    • 2 replies beneath your current threshold.
  • What Language (Score:3, Funny)

    by jcook793 (567065) on Monday October 11 2004, @11:42AM (#10494328)
    (http://retronerd.com/ | Last Journal: Friday February 07 2003, @10:10PM)
    What language was this post written in? Amazing.
  • C# and Java by disbaldman (Score:1) Monday October 11 2004, @11:42AM
  • I want functions (Score:3, Insightful)

    by Tablizer (95088) on Monday October 11 2004, @11:43AM (#10494338)
    (http://www.geocities.com/tablizer | Last Journal: Saturday March 15 2003, @01:22PM)
    I want actual functions, not "activity objects". Almost everyone, except for the extreme OO zealots, agree that OOP is not necessarily the best approach to every problem.
  • Too bad we can't mod articles (Score:3, Insightful)

    by MojoRilla (591502) on Monday October 11 2004, @11:43AM (#10494345)
    This would get a -1 Flamebait.

    My feeling is that these features are good news. There should be no gloating on the part of C#, it was clearly built on Java's coattails.

    Competition is a great thing, ain't it?
  • Static Import Bad? by Qwertie (Score:1) Monday October 11 2004, @11:43AM
  • From the Horse's Mouth - might make more sense by Anonymous Coward (Score:2) Monday October 11 2004, @11:44AM
  • Flaws in both Languages by Dante Shamest (Score:2) Monday October 11 2004, @11:44AM
    • Re:Flaws in both Languages by jonathanduty (Score:1) Monday October 11 2004, @11:50AM
    • Re:Flaws in both Languages by lakcaj (Score:1) Monday October 11 2004, @11:54AM
    • Re:Flaws in both Languages by SlashdotMeNow (Score:1) Monday October 11 2004, @11:56AM
    • Re:Flaws in both Languages (Score:5, Insightful)

      by scovetta (632629) on Monday October 11 2004, @12:03PM (#10494616)
      (http://scovetta.blogspot.com/)
      You use PHP/Perl on a server? For something other than adding phpbb to your homemade website? Sorry, but PHP/Perl serves a purpose, and so do Java/C#, and they two are almost mutually exclusive.

      For enterprise-grade web-applications (not hacks), it's .NET or Java. For real applications, it's either .NET, Java, or C++.

      End of story. Don't argue with me, just accept it.
      [ Parent ]
      • Re:Flaws in both Languages by Nukenin (Score:1) Monday October 11 2004, @01:45PM
      • Re:Flaws in both Languages by goon america (Score:2) Monday October 11 2004, @07:43PM
      • Re:Flaws in both Languages (Score:4, Insightful)

        by scovetta (632629) on Monday October 11 2004, @03:59PM (#10497054)
        (http://scovetta.blogspot.com/)
        As soon as people mention "enterprise-grade web applications" it's time to skip to the next thread. These people live in a little world that's been built for them by small minded project managers, clueless clients, and a university programming course that's been bought and paid for by a large corporation (usually Sun Microsystems).

        I take exception to that. Just because you can't do it doesn't mean that it can't be done. Maybe where you're from, Sun runs things, but here, it's the business-- how can you get the job done better and faster? And Java has proven to be a useful tool, when used by competant programmers (not Learn Java in 21 Days type).

        I'll try to make my case for "enterprise-grade web applications". Such an application needs the following features:
        1. Does what the customers want
        2. Secure
        3. Database-driven
        4. Clustered/clusterable
        5. ***Maintainable***
        6. Performs well
        7. Integrates with other systems
        8. Deliverable by the deadline
        It's #5 and #8 that are hard to come by. As for maintainability, I see Perl as a Write-Once language, with PHP only slightly better. Java/C# are much easier to maintain because (a) their syntax is not prone to being overly compact (read: unreadble), and (b) the number of people who can maintain Java applications is probably much larger than those who can modify your Perl app.

        You advocate Java and slam PHP in the same post? Both of these languages belong in the same beginners class.

        Where do you work that Java is considered "beginner"? Have your company actually produced applications?
        [ Parent ]
      • 3 replies beneath your current threshold.
    • Re:Flaws in both Languages (Score:5, Insightful)

      by nat5an (558057) on Monday October 11 2004, @12:04PM (#10494624)
      (http://www.cs.indiana.edu/~nainslie/)
      Who modded the parent up? The post is woefully inaccurate.

      1. What exactly does it mean if a language is "open source?" Surely, the specification is available for free. If you wanted to, you could write a lexer/parser/compiler without paying anything to Microsoft/Sun. Do you mean that the tools provided by the companies aren't open-source?

      2. C# doesn't "require" a virtual machine any more than Java "requires" a virtual machine. One could write a native compiler for both. Additionally, in fact, Microsoft's .NET implementation does just-in-time compilation of the .NET assembly generated by the C# compiler (the bytecodes, basically), so it doesn't actually run inside of a virtual machine, nor is it interpreted. Since Sun's javac is supposed to generate portable bytecodes to run on different architectures, they decided to use a VM to avoid having to write a thousand different JIT compilers.

      Neither of these are inherent weaknesses in the specifications of the languages, they're implemetation details. Since this story is supposed to be about new language features in Java, I don't see how bitching about Microsoft/Sun's implementations is really relavent.

      [ Parent ]
    • Re:Flaws in both Languages by Kihaji (Score:1) Monday October 11 2004, @12:06PM
    • Re:Flaws in both Languages by danharan (Score:2) Monday October 11 2004, @12:10PM
    • Re:Flaws in both Languages (Score:5, Interesting)

      by X (1235) <x@xman.org> on Monday October 11 2004, @12:10PM (#10494709)
      (http://www.xman.org/ | Last Journal: Wednesday February 19 2003, @07:41PM)
      Let's take these one at a time here:

      Neither is open source. Languages can't be classified open source, because they aren't programs. Certainly both languages have non-open source implementations, but they also have open source implementations.

      Both require virtual machines. Well, I guess it depends on what you mean by a virtual machine. Technically even the C runtime is a virtual machine. That being said, both Java and C# can be compiled to native code, bypassing the need for the JVM/CLR.

      Despite being marketed as portable, but have portability issues. ROTFL! Yes, perfect portability isn't possible. However, both languages are amazingly portable considering their extensive feature sets.

      We don't really need them. Really, when you think about it, we only really need C. PHP/Perl/C++/Python are really all flawed languages as a consequence. ;-)

      They're closely tied to their respective companies. This is more of a perception problem than a reality problem. I can do development in either language without getting involved with either company.
      [ Parent ]
    • Re:Flaws in both Languages by greg_barton (Score:3) Monday October 11 2004, @12:12PM
      • 1 reply beneath your current threshold.
    • Re:Flaws in both Languages by KZigurs (Score:1) Monday October 11 2004, @12:14PM
    • Re:Flaws in both Languages by pjt33 (Score:2) Monday October 11 2004, @12:16PM
    • you're confused by jeif1k (Score:2) Monday October 11 2004, @12:36PM
      • 1 reply beneath your current threshold.
    • Re:Flaws in both Languages by Teckla (Score:3) Monday October 11 2004, @12:37PM
    • 1 reply beneath your current threshold.
  • by Cloudgatherer (216427) on Monday October 11 2004, @11:44AM (#10494364)
    Seriously, this looks like an ad for C#, a bunch of claims with very little support/evidence for those claims.

    I've worked on C# and Java projects. As far as I'm concerned, C# = MS Java. MS could not control Java, so they abandoned support for it and built thier own "version." It's really a rinse & repeat cycle for MS: see successful software, build own version of said software to try to take over that market as well.
  • templates by minus_273 (Score:2) Monday October 11 2004, @11:44AM
    • Re:templates by ArbitraryConstant (Score:2) Monday October 11 2004, @12:14PM
      • 1 reply beneath your current threshold.
    • Re:templates by 21mhz (Score:2) Monday October 11 2004, @01:18PM
  • Corrected URL (Score:5, Informative)

    by waynegoode (758645) * on Monday October 11 2004, @11:44AM (#10494369)
    (http://slashdot.org//~waynegoode)
    The first link does not work. For the few who might not notice that the problem is the extra / at the end, thep link should be this [sun.com].

    Perhaps /. will correct the error. I emailed the editor when the story was in preview, but it was too late.

    • Nevermind... by waynegoode (Score:2) Monday October 11 2004, @11:47AM
  • I call bullshit (Score:5, Insightful)

    by The Bungi (221687) <thebungi@gmail.com> on Monday October 11 2004, @11:45AM (#10494383)
    (http://members.cox.net/bungi/)
    There is no apparent point to this "story". It's full of grammatical errors and obvious flamebait arguments (flamebait in the context of the slashbot groupthink). What, "C# is teh roxx0rz and Java.. well, I forgot teh point I was makeing for Java"? "The open source crap argument"? Way to go.

    Here's my theory. Along with the ubiquitous slashvertisements and the Microsoft-bash-of-teh-day barrage posts, these are a perfect opportunity to create a story that will generate 1,000+ comments and ten times those many page views and ergo ad impressions.

    C'mon, C# vs. Java? Outside of "RIAA sues 86 year-old grandma", "We hate Bush, let's talk" and "Microsoft patents KDE" there is no better source of inflammatory material in the dorkosphere.

    Sad, really.

  • the crap argument (Score:5, Interesting)

    by iamchaos (572797) on Monday October 11 2004, @11:46AM (#10494386)
    Is this article flamebait? Maybe I am just misunderstanding when he says:

    "At this point (even before Whidbey) the deciding factor (as always) for Enterprise work, when choosing a language platform, should be the support it has behind it, in terms of IDE, tools, api, and longevity of the vendor pushing it (forget the OpenSource crap argument, those guys are too in love with Perl, Python, and Ruby..."

    Which "crap" argument is he talking about? I assume he means that when using those languages you have thousands of directions to go for help in howtos, docs, tutorials, books and of course the loving #perl. I normally would not reply to something like that, but I took offense. Yes I love those languages. They all have strong points and make life fun when coding. I have support and have never had to rely on a company to provide said support. Oh yeah, and I write enterprise software with the mod_perl crap everyday of my life. Thanks.

    iamchaos
  • varargs by $RANDOMLUSER (Score:1) Monday October 11 2004, @11:46AM
    • Re:varargs by ultrabot (Score:2) Monday October 11 2004, @11:52AM
      • 1 reply beneath your current threshold.
    • Re:varargs by Qwertie (Score:1) Monday October 11 2004, @11:54AM
      • Re:varargs by CableModemSniper (Score:1) Monday October 11 2004, @12:05PM
    • Re:varargs by SlipJig (Score:2) Monday October 11 2004, @12:05PM
    • Re:varargs by CountBrass (Score:3) Monday October 11 2004, @12:16PM
      • Re:varargs by sbrown123 (Score:3) Monday October 11 2004, @01:27PM
  • Version (Score:4, Funny)

    by xPhoenix (531848) on Monday October 11 2004, @11:46AM (#10494392)
    (Last Journal: Wednesday April 20 2005, @07:48PM)
    So which version number is it? Java 2, Java 1.5, or Java 5? Someone should teach these guys to count before they start coding!
    • Re:Version by msuzio (Score:2) Monday October 11 2004, @12:40PM
    • Re:Version by CmdrMooCow (Score:1) Monday October 11 2004, @06:05PM
      • Re:Version by jack_csk (Score:1) Monday October 11 2004, @07:18PM
  • Optimization models (Score:3, Informative)

    by scumbucket (680352) on Monday October 11 2004, @11:46AM (#10494393)
    Java has a few advantages over C# in optimization. It's very easy to analyze Java programs to be certain that certain memory locations absolutely will not be modified. That's much harder in languages with native pointers. Those invariants allow you to compile out certain calculations that would have to be done at runtime in a C# program. You can even start spreading loop cycles over multiple CPUs, but I'm pretty certain that the present JVMs aren't that smart.
  • Mistake (Score:3, Insightful)

    by ajs (35943) <<ajs> <at> <ajs.com>> on Monday October 11 2004, @11:47AM (#10494409)
    (http://www.ajs.com/~ajs/)
    I'm not pleased with the "catch-up" game that Java is playing here. Java was a fairly nice middle-ground betweeen high and low level programming, and what appears to be an effort to become a high level language is rather ominous for those who are interested in testability and performance in Java.

    This, BTW, is why you don't want your language to be controled by a company which in turn has a marketing-driven bottom-line. The idea that two languages could co-exist with different target audiences is nonsense to marketing droids, but perfectly reasonable to someone like Guido van Rossum, Larry Wall or any of the other maintainers of truly open-source languages. Open source isn't the only way to maintain this focus, but in today's marketing-driven world, you aren't likely to see too many Bell Labs-like organizations putting out languages like C (which was semi-open source, as was Unix). Java and C# are probably much more typical.
    • Re:Mistake (Score:5, Insightful)

      by Sanity (1431) on Monday October 11 2004, @11:56AM (#10494542)
      (http://locut.us/~ian/blog/ | Last Journal: Wednesday April 20 2005, @02:26PM)
      Java was a fairly nice middle-ground betweeen high and low level programming, and what appears to be an effort to become a high level language is rather ominous for those who are interested in testability and performance in Java.
      Generics improve testability because they largely eliminate runtime ClassCastExceptions. I haven't seen any evidence to show that any of these features impose a performance penalty. Most just make the developers life easier by saving them from repeating common code patterns.
      This, BTW, is why you don't want your language to be controled by a company which in turn has a marketing-driven bottom-line.
      Yeah, because hardly any companies are driven by their bottom lines...
      [ Parent ]
      • Re:Mistake by Derkec (Score:2) Monday October 11 2004, @01:17PM
        • Re:Mistake by WaterBreath (Score:2) Monday October 11 2004, @01:32PM
        • Re:Mistake by blowdart (Score:2) Monday October 11 2004, @02:05PM
        • Re:Mistake by mmusson (Score:2) Monday October 11 2004, @03:25PM
        • Re:Mistake by Derkec (Score:1) Tuesday October 12 2004, @10:48AM
      • Re:Mistake by SvendTofte (Score:2) Monday October 11 2004, @08:39PM
        • Re:Mistake by cakoose (Score:3) Tuesday October 12 2004, @01:00PM
          • Re:Mistake by SvendTofte (Score:2) Tuesday October 12 2004, @01:50PM
      • Re:Mistake by horza (Score:2) Tuesday October 12 2004, @07:58AM
      • 2 replies beneath your current threshold.
    • Re:Mistake by WaterBreath (Score:1) Monday October 11 2004, @01:27PM
      • Re:Mistake by ajs (Score:2) Monday October 11 2004, @04:58PM
        • Re:Mistake by WaterBreath (Score:1) Monday October 11 2004, @07:04PM
          • Re:Mistake by ajs (Score:2) Monday October 11 2004, @08:05PM
    • Re:Mistake by Fnkmaster (Score:2) Monday October 11 2004, @01:35PM
      • Re:Mistake by Fnkmaster (Score:2) Monday October 11 2004, @03:26PM
        • Re:Mistake by Fnkmaster (Score:3) Monday October 11 2004, @03:41PM
      • 1 reply beneath your current threshold.
    • Re:Mistake by scruffy (Score:2) Monday October 11 2004, @01:48PM
      • Re:Mistake by ajs (Score:2) Monday October 11 2004, @04:26PM
    • Not sure wht you were getting at but... by SuperKendall (Score:2) Monday October 11 2004, @02:59PM
    • 1 reply beneath your current threshold.
  • Available application servers. by MacDork (Score:2) Monday October 11 2004, @11:47AM
  • Heh (Score:3, Funny)

    by KoolDude (614134) on Monday October 11 2004, @11:50AM (#10494461)

    SexyFingers writes "Sun released Java 1.5...

    The ultimate question is... how did you get those sexy fingers ? Java, C# or... Pr0n# ?

  • AVP (Score:5, Funny)

    by pizza_milkshake (580452) on Monday October 11 2004, @11:52AM (#10494477)
    (http://www.parseerror.com/)
    It's just like Alien vs. Predator:

    whoever wins, we lose.

    • Re:AVP by ppz003 (Score:1) Monday October 11 2004, @12:37PM
    • Re:AVP by Coryoth (Score:2) Monday October 11 2004, @01:34PM
    • Re:AVP by dcam (Score:2) Monday October 11 2004, @07:09PM
  • So this is what... by Sanity (Score:2) Monday October 11 2004, @11:52AM
  • slashdot changes stories?? by dAzED1 (Score:1) Monday October 11 2004, @11:52AM
  • IIS vs J2EE Servers (Score:5, Informative)

    by knitterb (103829) on Monday October 11 2004, @11:52AM (#10494494)
    (http://www.blandsite.org/)
    It's not so much the language that is a question of contest, but the platform they run on. I've done Java programming since 1.1.8, and have deployed on Tomcat, Resin and Weblogic.

    Recently I switched to C# (new job) and I have to tell you, the language is pretty neat with some of the tricks you can do. Nothing ground breaking though.

    What's really missing is the platform for release, and release management. Where are WARs and EARs for .Net? What the fuck is up with IIS (oh yeah, it's crap)?? Where is any sort of replicated server side session management (no, long ass hidden fields are *not* sessions - and a M$SQLServer *only* solution doesn't count).

    The constructs and tricks of a language can be debated as long as you want. You will probably find something nice in every language. But when you have to [operationally] deploy any application, great or not, on some cheap as shit, crap ass, hard to manage, non-repeatable platform such as IIS, that's when the real rubber hits the road with Java.

    J2EE deployment platforms are light years ahead of .Net's deployment platform (singular). Man I miss working with J2EE platforms and loathe IIS...even though it is my job to keep all this stuff running on IIS! :(
    • Re:IIS vs J2EE Servers by SlashdotMeNow (Score:1) Monday October 11 2004, @12:07PM
      • Re:IIS vs J2EE Servers by nuggetboy (Score:2) Monday October 11 2004, @12:20PM
      • Re:IIS vs J2EE Servers (Score:4, Informative)

        by eakerin (633954) on Monday October 11 2004, @01:20PM (#10495463)
        (http://www.bootseg.com/)
        SourceSafe is free with VS and will be even better integrated in Whidbey.
        He wasn't talking about source code management, he was talking about deployment packages.

        In the Java world with your Servlet engine, you drop a war (which is a glorified zip) file in a given deployment directory, and the engine unpacks it, and brings the app online. That's your entire process for deploying a simple app. It includes your web pages, classes, libaries, base config, etc.

        SourceSafe may be free, but my biggest complaint with it is it's poor branching, lack of proper security, and non-client-server access menthods.

        I've recently switched the windows developers at work to CVS, and had them install WinCVS and TortoiseCVS. WinCVS handles the hard stuff that you do very rarely. TortoiseCVS handles the everyday stuff. It ties into Explorer and My Computer (and other file browsing areas) and allows you do normal SCM operations (checkout, update, commit, tag, branch, diff, log, etc) right from the file browser.

        It's a nice package to try out if you've never seen it. CVS has it's own problems, but they're pretty easy to watch out for. Once the windows tools for subversion get a little more time under them, I'll probably end up switching our repositories over to it, for the renames, repository-wide version, and O(1) tagging/branching.

        [ Parent ]
      • Re:IIS vs J2EE Servers by CoolMoDee (Score:2) Monday October 11 2004, @02:47PM
      • 2 replies beneath your current threshold.
    • Re:IIS vs J2EE Servers by Bake (Score:2) Monday October 11 2004, @06:09PM
    • 2 replies beneath your current threshold.
  • by daveho (235543) on Monday October 11 2004, @11:53AM (#10494500)
    While neither Java nor C# is truly free of being controlled by an Evil Corporation(tm), Java at least has multiple vendors, runs on a wide variety of platforms, and has an open standardization process [jcp.org].
  • With C#, stuck in windoze (Score:5, Insightful)

    by JPyObjC Dude (772176) on Monday October 11 2004, @11:54AM (#10494522)
    so if you're doing C# and you're foundations in OOP is rock-solid, there really isn't any difference whether you're coding C# or Java.

    He kind of forgot that there are many programmers and customers who DON'T want to deploy their systems on win32. With Java apps, you don't have to. In fact you can choose almost any operating system and hardware. Anybody who chooses C# over Java for enterprise deployments is truly a MicroWeenie.

    I much prefer my 8 processor HP UX box any day :]

    • Re:With C#, stuck in windoze (Score:5, Insightful)

      by pesc (147035) on Monday October 11 2004, @12:14PM (#10494740)
      You are right. One main feature that Sun designed for Java was WORA (Write Once Run Anywhere). M$ thought this sucked. They tried to destroy that feature and got sued over it. So the invented C# instead. C# isn't WORA, it is WORM (Write Once Run on Microsoft). With C#, you are locked in again. That's the whole point with C#.
      [ Parent ]
    • With Java, stuck in Windows/Linux/Solaris by RdsArts (Score:2) Monday October 11 2004, @02:08PM
      • by shaper (88544) on Monday October 11 2004, @02:55PM (#10496480)
        (http://slashdot.org/)

        If it's a choice of language based solely on the portablity of code, C# wins out IMHO. With Java, you're dependant on Sun to support your system, which is a royal pain. (as anyone with a *BSD box will tell you)

        I run a J2EE application on WebSphere on a mainframe under OS/390. Where's .Net for OS/390? I can (and have) also deploy that same application with zero changes to Linux, Windows, Solaris, AS/400 or Mac OS X. I can choose from a number of J2EE implementations like WebSphere, WebLogic, JBoss or Resin, each of which have different features and strengths. I don't even recompile, I just drop in the WAR and go.

        And it is incorrect to say that you are dependent on Sun to support your system. Independent vendors like IBM, BEA and Apple also license and support J2SE and J2EE for their own platforms. My personal systems are Macs and I get my Java from Apple, not Sun. My corporate systems are IBM and I get my corporate Java from IBM, not Sun. If I have a problem with either, I don't call Sun, I call Apple or IBM. IBM provides my production support contract. IBM are the ones who responded with a custom patched version of WebSphere for OS/390 in less than 24 hours when I had a production problem. Not Sun.

        [ Parent ]
      • Re:With Java, stuck in Windows/Linux/Solaris by Joseph_Daniel_Zukige (Score:1) Tuesday October 12 2004, @03:45AM
      • 2 replies beneath your current threshold.
  • Java C# porting - Lucene as example (Score:5, Interesting)

    by otisg (92803) on Monday October 11 2004, @11:58AM (#10494562)
    (http://www.simpy.com/ | Last Journal: Tuesday April 15 2003, @12:58PM)
    It is this similarity and 'compatibility' of Java & C# that is now making it easy to port various applications between the two languages. For instance, the very popular Lucene (Information Retrieval library from Jakarta (i.e. Java)) has a very solid .Net port written in C# called dotLucene. The Lucene -> dotLuene port is fairly automated, it appears, which allows developers of the .Net/C# port to keep up with the original software written in Java.

    If C#/Java continue in this direction, I think we will see many more applications that have parallel versions in the two languages.

    See:
    Lucene [apache.org]
    dotLucene [sourceforge.net]
    • 1 reply beneath your current threshold.
  • Meanwhile, C++ goes nowhere by Animats (Score:2) Monday October 11 2004, @12:02PM
    • Netcraft confirms. by Anonymous Coward (Score:1) Monday October 11 2004, @12:07PM
    • Re:Meanwhile, C++ goes nowhere by sriram_2001 (Score:1) Monday October 11 2004, @12:08PM
    • Re:Meanwhile, C++ goes nowhere by scotch (Score:3) Monday October 11 2004, @12:19PM
    • Re:Meanwhile, C++ goes nowhere by StrawberryFrog (Score:2) Monday October 11 2004, @12:20PM
    • Re:Meanwhile, C++ goes nowhere (Score:5, Insightful)

      by cpghost (719344) on Monday October 11 2004, @12:28PM (#10494895)
      (http://www.cordula.ws/)

      C++ is a great language, but it's choosy about its friends. It takes some time to master all (well most) advanced aspects, but as soon as you do, nothing beats a good C++/STL combo.

      What I don't like about C++ standard, is the lack of a decent socket library that would be part of the i/o streams. There are non-portable classes for this of course, and everyone could roll their own, but it's not in the C++ standard (yet).

      IMHO, one of Java/C# biggest advantages over C++ is this particular aspect. Not that it would convince me though to switch away from C++ to Java, which simply doesn't cut it yet.

      For fast prototyping, I'd stick to Python, but when performance really matters, C++ is still king!

      [ Parent ]
    • Re:Meanwhile, C++ goes nowhere by joib (Score:2) Monday October 11 2004, @12:35PM
    • Welcome stranger! (Score:5, Insightful)

      by Oestergaard (3005) on Monday October 11 2004, @12:40PM (#10494988)
      (http://unthought.net/)
      Welcome to planet earth - we also have a language called 'C++', but it is rather different from what you describe.

      Here, we have compilers that can do bounds checking - avoiding buffer overflows, if you decide to use them.

      However, the template feature of our C++ is so powerful, that when used together with structs and classes, one can produce beautiful code that is extremely powerful, yet so simple that it is easy to ensure it is not susceptible to said buffer overflows (or memory leaks or the thousand other plagues of much of the software that surrounds us).

      This is why there is actually not anything fundamentally wrong with our C++. We are some who want template namespaces though, but outside of little issues (that do have workarounds) like that, the only things we really want is additions to the (already powerful) standard library, the STL.

      One problem remains with our C++ though. We live on a planet inhabited mainly by clueless morons, people who do not like to learn, people who refuse to accept that maybe others have seen farther than themselves. This is why we, too, have a lot of problems with software in general - buffer overflows as you mention, among many other problems.

      I am sure we can arrange for you to get a copy of our C++ standard - that will allow a clever individual, such as yourself, to write software without the problems we discussed. I would then suggest that we join our efforts, in teaching the unwashed masses how to actually use the language properly, so that we will not have to re-do all software in the world (both ours and yours) by ourselves.

      Deal?

      [ Parent ]
    • Re:Meanwhile, C++ goes nowhere by yamla (Score:3) Monday October 11 2004, @12:40PM
    • Wow. I am amazed at your opinion and wish to understand it but I have to admit I reserved to just think that you do not know what you are talking about.

      [snip]
      "This problem is the primary reason that C# exists. If the C++ committee had fixed their language, we wouldn't need C#."
      [snip]

      First, this is not why C# exists. For real reason as to why it is search the net. Enough info out there without me reiterating it.

      Second, there is "nothing really wrong with C++" and the reason the committee buys that is because it is true. The language specification spells out, as a single example, that if you index beyond the end of an array or dereference a null pointer BOOM! Undefined behavior, as in may work with some sort of reasonable expectation or may unleash flying monkey demons from your spouses nose with the sole purpose of ruining your computer career.

      Third, C++ is not an OOPL like Java or C#. It is a multi-paradigm langauge with support for any type of construct you want to throw at it - including shitty code regardless of paradigm.

      Again, I am trying to understand where you are coming from but I just do not see your point - or more directly that your point is valid.

      C++ as a language is not really lacking at this ponit. Now standardized libs, like the inclusion of the STL was to the standard, are welcome. Things like concurrency, threading, gc, GUI, etc. Yes there are plenty out there but none of them "officially" standard yet. I think this argument would support your point better, if I was understanding what you meant rather than what you typed.

      [ Parent ]
    • Partly agree by Hortensia Patel (Score:2) Monday October 11 2004, @02:00PM
    • In praise of C++ by Baudelaire76 (Score:1) Monday October 11 2004, @07:29PM
  • And multiple inheritance is due when...? by Anonymous Coward (Score:2) Monday October 11 2004, @12:02PM
  • Worst? by McLoud (Score:1) Monday October 11 2004, @12:03PM
  • Limitations of Generics in Java. (Score:3, Interesting)

    by miguel (7116) on Monday October 11 2004, @12:04PM (#10494621)
    (http://tirania.org/blog)
    There are some important limitations of generics in
    Java, which are properly addressed in C#.

    For more details, you might want to read:

    http://www.artima.com/intv/generics.html

    C# still has a few extra niceties like properties,
    events, delegates, anonymous methods and iterators.

    Miguel.
  • Java poor design choices (Score:3, Insightful)

    by mmusson (753678) on Monday October 11 2004, @12:05PM (#10494640)
    My biggest beef with java right now (well Sun, really) is that they are make design decisions in the name of backward compatibility that are leading to poor design choices. Backwards compatibility is an important consideration, but it should not be used as an excuse to make poor design decisions. I use a variety of java programs day to day that only work with certain VM versions due to bugs, features, etc. It seems silly to give this one aspect such heavy consideration as if the current java versions are perfectly backward compatible today when they clearly are not.

    The new generics feature is clearly patterned after C++ templates, but in the name of backwards compatibility Sun chose to implement generics using erasure. This means that a generic type loses all of its type information leading to a alot of issues including broken support for arrays. Using erasure keeps much of the potentially confusing syntax of C++ templates and virtually none of the power.

    I suppose I would be less upset if the feature had a different name. Maybe something like AutoCasting (like the name AutoBoxing). "Generics" implies things that the feature does not even try to deliver. Adding true generic programming constructs to java would have been a huge leap forward for the language. Instead we are left with a toy feature that allows you to build type safe containers, nothing more. Very disappointing.
  • API talk... (Score:3, Informative)

    by Chuck Bucket (142633) on Monday October 11 2004, @12:10PM (#10494700)
    (http://pitchforkmedia.com/ | Last Journal: Tuesday March 23 2004, @09:08PM)
    Funny, we were talking about the 1.5 APIs last week here at work, while talking about migrating our apps over from 1.4.x. This site Official Java Programming Documentation [jhu.edu] gives you a ton to think about. I rem when we were on 1.2...

    CB*($#@
  • Enterprise development (Score:3, Interesting)

    by drgroove (631550) on Monday October 11 2004, @12:11PM (#10494717)
    Last time I checked, few industries were doing enterprise development with J2SE, regardless of the version. J2EE is the preferred platform for enterprise application development (hence the 'EE', or 'Enterprise Edition', after the 'J2' bit). J2SE 1.5 is a great release, but it means little currently for J2EE developers.

    The new features to Java in version 1.5 are all anticipated and appreciated by the development community, but us J2EE developers won't be able to access these new features in our apps until the official J2EE 1.5 release comes out, and the various app server vendors (IBM, BEA, Oracle, Sun, JBoss, Apache, etc.) support it in their products.

  • Java is not only a language by hurricane_sh (Score:1) Monday October 11 2004, @12:17PM
  • April 1st? (Score:3, Insightful)

    by cthrall (19889) on Monday October 11 2004, @12:18PM (#10494778)
    > should be the support it has behind it, in terms
    > of IDE, tools, api, and longevity of the vendor

    Eclipse/IntelliJ/Together
    Apache/Tomcat, WebSphere, BEA
    RedHat/Suse/Mandrake/Debian

    All of these tools and vendors have been around longer than C# and .NET.

    > pushing it (forget the OpenSource crap argument,
    > those guys are too in love with Perl, Python,
    > and Ruby - Java could become the child nobody
    > wants to talk about if Sun dies) - right now
    > that's C# and the .NET Framework ---

    You misspelled "FUD."
  • Biggest problem here: by rts008 (Score:1) Monday October 11 2004, @12:25PM
  • still very different (Score:5, Informative)

    by jeif1k (809151) on Monday October 11 2004, @12:27PM (#10494880)
    Don't be fooled by syntactic similarities; C# and Java are still very different languages:
    • C# has value classes
    • C# has operator overloading
    • C# has multidimensional arrays
    • C# has unsafe modules; in unsafe modules, you can call C functions directly (no JNI) and manipulate C data structures and pointers
    • C# does not force you to declare exceptions
    • C#'s generics are efficient for unboxed types while Java boxes in many cases
    • C#'s generics are type-safe across compilation boundaries (I believe Java's are not)

    Basically, Sun did a bunch of things they could do without changing the VM too much and without breaking old code. But for a bunch of other features, they punted and just added a bit of syntactic sugar to the compiler that makes Java look superficially like it's doing the same thing but is much less efficient under the covers.

    For enterprise applications, those differences may not matter much (and they may even be harmful), which is probably why Sun doesn't do anything about them. But for desktop use and application programming, they do matter. Microsoft wanted to create a new language that their legions of C++ programmers could use, and C# is a pretty credible answer for that. Those people don't care about cross-platform features, they care about getting the job done, and if that involves the occasional unsafe module, it doesn't matter to them.
  • Plenty of differences (Score:3, Insightful)

    by flakac (307921) on Monday October 11 2004, @12:28PM (#10494897)
    Sorry, but there are still some major differences in the two. I've looked at the new features in Java 1.5 and agree that yes, they are definitely a plus.(Note: I code nowadays almost exclusively in Java):
    • No unsigned integer type in Java -- if you need an unsigned long, you're SOL. So it's pretty difficult to code certain numerical algorithms (compression and encryption, anyone?)
    • Java the language is inextricably tied to the JVM - C# is just another option for developing for .NET.

    For enterprise-grade work I still prefer J2EE over .NET, but that really more depends on what client I'm working for at the time. At the end of the day, both get the job done.
  • IT... by johnhennessy (Score:2) Monday October 11 2004, @12:37PM
  • Can you please clarify.. by Anthony Liguori (Score:1) Monday October 11 2004, @12:39PM
  • More Features != Better Language by Anonymous Coward (Score:2) Monday October 11 2004, @12:41PM
    • 1 reply beneath your current threshold.
  • C# and Java are so similar.... (Score:3, Informative)

    by Manitcor (218753) on Monday October 11 2004, @12:42PM (#10495011)
    (http://www.manitcor.com/)
    that I dont care which a client wants anymore. Its like asking for 6 of one and a half dozen of the other. I had been afriad of learning Java for ages but knew C# very well. Then I forced myself to learn Java and as soon as I got into it I kept saying "Wow MS copied Sun!"

    When you think about it though good OO concepts tend to evlove toward similar goals. Languane and usablitly concepts are the same all around. Its to the point now where the differences between Java and C# are more syntax and available libararies. Ive even been able to easily port Java to C# and vice versa since the languges are so similar.

    It has defintaly opened up things more for me, as now I leave it to the client as to what they want. If they are an MS shop then C# is an obvious choice if they use Linux or perfer alternative platforms then Java is obviously what you should build in.
  • Java's primitive types are not objects. There's no reason they couldn't have been (compilers that generated efficient arithmetic code from high level components date back to the '70s) but they're not... which means you have to drop down to C-style types over and over again.

    It hinders programming efficiency, and it hinders code efficiency: any place where primitive types can be used, the compiler can infer that primitive code can be generated, any place it can't you'd have had to use object types... but the compiler is MUCH smarter about figuring where casts need to be than average (or even above-average) programmers.

    Smalltalk is "OO from the ground up". Java is "OO from the Integer up".
  • there is a difference by RoninSix (Score:1) Monday October 11 2004, @12:56PM
  • not cross platofrm by SQLz (Score:2) Monday October 11 2004, @12:58PM
  • by raider_red (156642) on Monday October 11 2004, @01:00PM (#10495210)
    (Last Journal: Tuesday December 13 2005, @02:25PM)
    I haven't paged through the comments yet, but I'll bet I can tell what will be posted:
    1. Java Sucks
    2. C# sucks more, and it's put out by microsoft, which is evil.
    3. Java's not so bad
    4. C# is better than Java
    5. Perl is better than either of them
    6. Python rules!
    7. "But I prefer [C/C++, Lisp, Fortran, Forth, etc.]"
    8. In Soviet Russia...
    9. I for one welcome our new [java|c#] overlords
    And of course, this post will be modded as flamebait.
  • What about competition? by dpw2atox (Score:2) Monday October 11 2004, @01:05PM
  • The java generics system just saves typing and ensures type-safety for collections. But it does nothing about the problem of excessive boxing and unboxing that plagued java collection classes from 1.0 on.

    For example if you have an ArrayList<Integer> in java, it internally uses an object[] to store the elements of the array. So everytime you write a new value to the ArrayList<Integer> by e.g. calling list.Add(i), a new object is allocated on the heap.

    A List<int> in C# on the other hand uses an int[] internally, so adding or changing an element in the List<int> will result in no boxing/unboxing at all. A List will be just as fast as an int[] since the indexer method will be inlined.

    The performance difference is dramatic: try creating an ArrayList<Integer>/List<int> and filling it with 1000000 numbers. The C# code will run 10 to 20 times faster, while the java version will use 20 bytes per Integer instead of 4 bytes per Integer like the C# version.

    I am currently not at home, but if somebody is interested I will post a benchmark later.
  • Rules on languages... (Score:3, Interesting)

    by feloneous cat (564318) on Monday October 11 2004, @01:34PM (#10495602)
    I have a couple of rules when regarding languages:

    1. Does it have wide industry support or is it merely another "we ship it until we kill it" single-sourced language.

    2. Does the name sound like it could hurt you?

    C# pretty much fills the bill (no pun intended) for both 1 and 2.

    MS is no stranger to introducing something and then killing it some time later (hence my avoidance of both .NET and C#). And just when you get used to version XYZ, they come out with XYZ+1 which changes EVERYTHING. Sorry, I don't need my code to die at the whims of MS.

    Then there is the whole "C#" name which, frankly, I think sounds retarded. To most Americans, the '#' symbol is pronounced "pound". Few people I know call it a "sharp" (actually, NO ONE that I know calls it that).

    Finally, just the sound of it sounds dangerous and, if inserted in the wrong place (like my MIND) could cause harm.
  • For me C# doesn't matter yet by buttkick (Score:1) Monday October 11 2004, @01:36PM
  • It's the installation stupid (Score:4, Informative)

    by nzgeek (232346) * on Monday October 11 2004, @01:37PM (#10495637)
    (http://www.gadgetophile.com/ | Last Journal: Tuesday July 13 2004, @10:14PM)
    I've done enterprise-level Java and C# implementations for financial institutions, and reckon there is one thing that people always miss when comparing the two languages: installation.

    C#, despite any other flaws, Just Works(tm). Install Visual Studio, write some code, click the run button. Sure it takes a bit of thinking to get a n-tier implementation up and running properly, but the installation of the back-end stuff (IIS, db connections, remoting) is incredibly simple.

    On the other hand, to get enterprise Java (J2EE, although some would argue that a class library is easier and more versatile), you need to learn how to install an app server (JBoss, Orion, or god forbid WebSphere), and how to configure that system for database connections, performance, session and object permanence, etc..

    None of this really matters in a 'big-iron' enterprise environment, because there's room to hire a websphere monkey to look after the cat-herding. In anything below a mega-corp or mega-bank however, the overhead of running Java can sometimes be a burden that developers just don't want to think about.

    I see it kinda like using Firefox over IE. They both do pretty much the same thing, and one does it 'better', but at the same time requires some effort to implement. Some people just can't be bothered with the effort.
  • Bad coding habits by 21mhz (Score:2) Monday October 11 2004, @01:53PM
  • Next up on Slashdot... by Liquid Len (Score:1) Monday October 11 2004, @02:07PM
  • Language differences? by Jugalator (Score:2) Monday October 11 2004, @02:21PM
  • C#? by NeoGeo64 (Score:1) Monday October 11 2004, @02:26PM
    • 1 reply beneath your current threshold.
  • tunnel vision by Anonymous Coward (Score:1) Monday October 11 2004, @02:36PM
  • Where can I get C#? by SamSeaborn (Score:1) Monday October 11 2004, @02:42PM
  • Exceptions anybody? by Anonymous Coward (Score:1) Monday October 11 2004, @02:48PM
  • ENUMS!!!! by CaptainPinko (Score:2) Monday October 11 2004, @02:49PM
  • Apples and Oranges by deuterium (Score:2) Monday October 11 2004, @03:13PM
    • 1 reply beneath your current threshold.
  • varargs is *not* an enhancement (Score:4, Interesting)

    by hopethishelps (782331) on Monday October 11 2004, @03:23PM (#10496774)
    5. Varargs (C# 1.0's params construct, ellipsis construct in C++)

    As Stroustrup says of the ellipsis construct in C++, "The most common use of the ellipsis is to specify an interface to C library functions that were defined before C++ provided alternatives", and gives an example of the "extra work that face[s] the programmer once type checking has been suppressed using the ellipsis." Using the ellipsis construct, other than where it has to be used to access some legacy C library, is definitely very poor style in C++.

  • Double Duh!! by Nom du Keyboard (Score:2) Monday October 11 2004, @03:34PM
  • Go Read This by cthrall (Score:2) Monday October 11 2004, @03:39PM
  • by chiph (523845) on Monday October 11 2004, @04:04PM (#10497091)
    The included libraries will make/break a language, and right now, the .NET libraries are much easier to use. Partly because they were designed "as a whole" and don't have a lot of cruft in them (yet). And partly because the MS on-line help is vastly superior to JDoc (does Sun not believe in code samples?).

    The biggest weakness I see in the .NET framework is that 90% of it uses concrete implementations. Because they didn't use an Interface-driven design, they now have to fall back on the Win32 style of appending "-ex" to class names when they want to improve them, rather than letting a dynamic loader find the class the developer needs.

    Even so, the Visual Studio IDE is so far ahead of any of the Java IDEs (Eclipse comes closest), that it's probably Microsoft's single best competitive advantage.

    Chip H.
  • does c# have the concept of RMI? by the-build-chicken (Score:2) Monday October 11 2004, @04:25PM
  • C#2.0 and IDEs (Score:3, Interesting)

    by shodson (179450) on Monday October 11 2004, @05:34PM (#10497902)
    (http://www.wiizy.com/)
    DISCLAIMER: I develop heavily in both C# and Java, more C# than Java, about 80% C#, 20% Java, not by choice but based on client demands.

    I don't think it's fair to compare Java 1.5 (released) vs. C# 2.0 (beta, who knows when it'll actually be released). That's like comparing Linux to Longhorn.

    And re: IDEs, while programming so much in VS.NET, I missed all of the cool features of my IDEA IntelliJ Java IDE [jetbrains.com] that I was excited to buy ReSharper [jetbrains.com], bringing some of IDEA's cool features to VS.NET.

    One of the main things I like about .NET, though, is that the libraries seem to be more consistent, whereas the Java APIs have evloved and been added to by different developers using diffferent programming styles and approaches to patterns, each package seems to implement different programming styles and constructs, but you get used to it after a while. Plus, Java has so much deprecated code, they need to clean those out once and for all and clean up the APIs, see this [onjava.com] for more details of what I'm talking about.
  • Copy & Paste by AngryScot (Score:1) Monday October 11 2004, @05:35PM
  • Topic? by nitehawk214 (Score:1) Monday October 11 2004, @08:00PM
  • Bias article? (Score:3, Insightful)

    by AstroDrabb (534369) on Monday October 11 2004, @08:12PM (#10499286)
    I use both Java and C# professionally and this post smells of bias.
    in my NSHO, the Java API has become bloated...
    Huh? The Java 5 JRE download is 14 MB, while the .Net 1.1 runtime is 24MB. The Java 5 SDK download is 44MB while the .Net 1.1 SDK download is a whopping 109MB! Which one has bloat again? Java by far beats out C#/.Net as far as 3rd party modules goes. Anything you can think of programming, there is something available in Java. I cannot say the same yet about C#/.Net.
    At this point (even before Whidbey) the deciding factor (as always) for Enterprise work, when choosing a language platform, should be the support it has behind it, in terms of IDE, tools, api, and longevity of the vendor pushing it (forget the OpenSource crap argument, those guys are too in love with Perl, Python, and Ruby - Java could become the child nobody wants to talk about if Sun dies) - right now that's C# and the .NET Framework
    Does this guy know _anything_ about the Java community? The fortune 500 where I work had a few meetings trying to figure out which vendor we would use for our JAVA IDE. There was no choice with our C# IDE, it was just MS. For Java, we looked at IBM, Sun, BEA, JCreator, Eclipse, IntelliJ and Borland. If SUN died, we would still have _PLENTY_ of choice.

    I like both Java and C# from a language perspective, however, working for a large company, I would recommend Java over MS's .Net. Java has been _very_ stable and _SECURE_ while the .Net security holes [zdnet.com] have already started at only version 1.1. We also appreciated the fact that we were able to switch our Java server apps to Linux over Solaris, we could even use MS Windows if we wanted to for our Java app servers; we don't have that same choice or luxury with MS .Net.

  • 101 reasons why Java is better than dotNet by Anonymous Coward (Score:1) Monday October 11 2004, @08:16PM
  • Computer science = abstract + conquer! by j.leidner (Score:2) Monday October 11 2004, @08:40PM
  • Awesome stuff by randymorin (Score:1) Monday October 11 2004, @09:21PM
  • C# vs Java vs Python vs whatever by NullProg (Score:2) Monday October 11 2004, @11:23PM
  • Innovations? by descubes (Score:2) Tuesday October 12 2004, @12:07AM
  • The deciding factor - crap. by DavidTurner (Score:1) Tuesday October 12 2004, @03:30AM
  • Any place for both of them ? (Score:3, Insightful)

    by dweeves (520351) on Tuesday October 12 2004, @05:29AM (#10501657)

    It's too easy to give C# an advantage about what it adds to Java and forgetting it's a 95% Java clone.

    Don't forget It took 7 years of Java and a Borland expert to produce C# !

    During this time, Java did conquer most of the enterprise application development market and defined a technology model based on application servers handling component lifecycles.

    C# as a language,has taken most of java state of the art paradigms and added some new features which are neat but, despite its huge base library is far from Java versatility and degree of maturity.

    Java 1.5 advantages

    • Language Features/Libraries:
    • Server side Programming:
    • Defined server side technology paradigms, with lots of implementors to handle them (open source and free ones are competing with the best commercial ones).
    • Client Side Programming:
    • Applets (which aren't dead technology if you know how to use them)
    • Web Start
    • IDE/Tools
    • Eclipse (which is free and open)
    • Management aspects
    • Lots of available skilled developers
    • Can run on any platform with a compliant JVM (if well coded)
    • All big database vendors have JDBC drivers
    • Mature technology

    Java 1.5 Drawbacks

    • Server Side:
    • Web Service support are expensive to implement and non-standardized.
    • Very poor JSF controls
    • Client Side:
    • Swing (but SWT / Eclipse rocks)
    C# advantages
    • Language Features:
    • Benefits from the .Net Jitter.
    • Events/Delegates model
    • Client Side:
    • Future Windows Development preferred language (along with XAML which is more about powerful UI macro-scripting)
    • DirectX integration
    • Speed (on Windows)
    • Server Side
    • ASP.Net Controls model
    • IDE/Tools
    • VS .Net (most productivity boosting IDE IMHO)
    • Management aspects
    • Still time to have plenty of Microsoft support if you have a interesting project.
    C# drawbacks
    • Language Features
    • No Observable/Observer (but achievable through Events/Delegates)
    • Serialization limitations
    • Client Side
    • No Windows independent GUI framework. (WebForms are server-based controls)
    • No applets equivalent (don't event think about ActiveX)
    • Server Side
    • No detailed Infrastructural model, No best practices, No fine grained control.
    • IDE/Tools
    • No free IDEs compares to VS .Net and is really useable when you're used to commercial IDEs features. (Borland C# Builder CE is too restricted and not open source)
    • Management aspects
    • Young technology
    • Not that much real experts available out of Microsoft
    • Windows deployment only (Mono's out, but still work in progress ,can't be a professional choosen .NET deployment platform yet IMHO)

    So, my conclusion is that by now, both technologies are interesting but Java is the most versatile.

    I would prefer C# for:Windows Programming ,Attractive Web based interfaces (if an acceptable target platform is Mono or Windows), Porting existing windows applications to Web, Simple Self-Contained Web Services

    I Would prefer Java for developing:Enterprise Applications,Complex Web Services,Highly interactive web interfaces (through applets),Multi OS client application.

    For me, both languages are relevant, it's only a matter of what work has to be done and what resources are available to make it.Most of the time, technology is chosen based on a company resources capabilities!

  • As Babbage might have said... by gidds (Score:2) Tuesday October 12 2004, @09:25AM
  • Re:If sun dies... by fitten (Score:1) Monday October 11 2004, @11:43AM
  • Re:APIs (Score:5, Informative)

    by Palshife (60519) on Monday October 11 2004, @11:47AM (#10494403)
    (http://www.palshife.net/)
    XML Parser

    You mean like JAXP [sun.com] and JAXB [sun.com]?
    [ Parent ]
    • Re:APIs by mcbevin (Score:2) Monday October 11 2004, @12:25PM
      • Re:APIs by DevolvingSpud (Score:1) Monday October 11 2004, @12:44PM
      • Re:APIs by AKAImBatman (Score:2) Monday October 11 2004, @12:52PM
        • Re:APIs by SnapShot (Score:1) Monday October 11 2004, @01:35PM
        • Re:APIs by mcbevin (Score:2) Tuesday October 12 2004, @03:52AM
  • Re:Only Microsoft by Anonymous Coward (Score:2) Monday October 11 2004, @11:50AM
  • Re:APIs (Score:3, Insightful)

    by SnapShot (171582) on Monday October 11 2004, @11:51AM (#10494467)
    I use DOM within XML as well as the MessageDigest using the MD5 algorithm every day. So I'm letting you know...

    Or, is your complaint based on the fact that the libraries that underlie the XML and Security algorithm API's can be swapped out? To me, that's a feature not a bug but YMMV.
    [ Parent ]
  • Re:Sounds a lot like religion (Score:5, Insightful)

    by jayminer (692836) on Monday October 11 2004, @11:52AM (#10494489)
    (http://dogac.senol.com/)
    I code C# for a living, so according to your definition, sold (or more appropriately rented) my soul to the devil. (This does not change the fact that I personally prefer free/open source technology. My PDA, my media players, my home operating system are all free/open source based.)

    Java is not any more closer than C# to open source technologies. Sun doesn't like open source, just as Microsoft.

    It's a very well known fact that Java has been a base (or in other words "the" figure) for Microsoft while developing C#, but that does not imply that "Java is good, C# is bad" or vice versa.

    I would be happier personally to code in Java, but professional life yields to disqualify who resists new technology.
    Your choice of programming language is not your religion, and it can change continuously through your life. Just like your operating system.
    [ Parent ]
  • Re:APIs by Moe Yerca (Score:2) Monday October 11 2004, @11:52AM
  • Re:APIs by ckuske (Score:1) Monday October 11 2004, @11:54AM
  • Re:APIs (Score:5, Insightful)

    Let me know when stuff like an XML Parser and MD5 are native in Java.

    They ARE.

    XML package [developerd...ummaryhtml]
    MD5 and SHA support [developerd...iindexhtml]

    The former has been in Java since 1.3, and the later since 1.1(!).

    Honestly, Java has every feature and the kitchen sink in its core APIs. And if a feature isn't there, it's very easy to write a library to add it. That's why programmers like Java so much.

    Any other features you'd like me to find for you?
    [ Parent ]
    • Re:APIs by AKAImBatman (Score:3) Monday October 11 2004, @12:06PM
    • Re:APIs by EmperorKagato (Score:2) Monday October 11 2004, @12:34PM
    • Re:APIs by AKAImBatman (Score:2) Monday October 11 2004, @12:01PM
      • Re:APIs by jchoyt (Score:2) Monday October 11 2004, @12:46PM
    • Re:APIs by Rudeboy777 (Score:2) Monday October 11 2004, @05:52PM
    • 2 replies beneath your current threshold.
  • Re:APIs by iabervon (Score:2) Monday October 11 2004, @11:57AM
  • Re:APIs (Score:3, Informative)

    Well, let's see, javax.xml.parsers and the related packages that are part of the Java API for XML have been standard since Java 1.4. Meanwhile, javax.crypto (which includes a Message Authentication Code class that supports MD5 hashing) has also been standard since Java 1.4. Java 1.4 is the major release that preceded the one the current article is talking about, and has been out since around 2002.

    So, were you trolling, or did you just not bother to keep up with Java?

    [ Parent ]
  • Re:I hope so. by jallen02 (Score:1) Monday October 11 2004, @12:01PM
    • Re:I hope so. by Anonymous Coward (Score:1) Monday October 11 2004, @12:06PM
      • Re:I hope so. by Anonymous Coward (Score:1) Monday October 11 2004, @12:59PM
      • Re:I hope so. by jallen02 (Score:2) Monday October 11 2004, @06:14PM
  • Re:If sun dies... by Anonymous Writer (Score:2) Monday October 11 2004, @12:02PM
  • Re:Only Microsoft by Timesprout (Score:2) Monday October 11 2004, @12:05PM
  • Java checked exceptions suck, but how to fix them by The Pim (Score:2) Monday October 11 2004, @12:18PM
  • Re:Only Microsoft by winfx (Score:1) Monday October 11 2004, @12:19PM
    • 1 reply beneath your current threshold.
  • Re:Only Microsoft by jeif1k (Score:2) Monday October 11 2004, @12:44PM
  • Re:Only Microsoft by GreyWizard (Score:1) Monday October 11 2004, @12:46PM
  • Re:There is a huge difference! by TrancePhreak (Score:2) Monday October 11 2004, @01:11PM
  • Re:I hope so. by blowdart (Score:1) Monday October 11 2004, @01:36PM
  • Re:Reflection? by jekewa (Score:1) Monday October 11 2004, @05:18PM
  • Re:Sounds a lot like religion by puddpunk (Score:1) Monday October 11 2004, @05:20PM
  • Re:Sounds a lot like religion by kfg (Score:1) Monday October 11 2004, @06:31PM
  • Re:Fair and Balanced by slickwillie (Score:2) Monday October 11 2004, @10:12PM
  • Re:Common sense prevails again! by Blitzenn (Score:1) Tuesday October 12 2004, @08:02AM
  • 41 replies beneath your current threshold.
(1) | 2