Slashdot Mirror


The Problem Of Developing

A reader writes "ZDNet News is running an editorial about the choice of programming languages for developers today. The author suggests that developers have been left with little choice because all of the current programming languages are essentially the same."

178 of 438 comments (clear)

  1. C# by October_30th · · Score: 4, Funny
    C# is not the same! Neither is .NET.

    They both are brilliant innovations by Microsoft that will carry us all into the wonderful future on the information superhighway!

    --
    The owls are not what they seem
    1. Re:C# by mozkill · · Score: 3, Informative

      im not sure that something as "plagiaristic" as C# can be considered "different".

      hmm... as a matter of fact, pluggable ideas for .NET may have originated from early Object Oriented Software, such as Logic Audio... so i wouldn't consider .NET innovative.

      i use .NET Enterprise 2002 every day right now, so i think i can say these things.

      the only conclusion that i have come to (on the subject of the article referenced here) is that .NET basically is so WELL DONE that it is the first time that all the languages are unified to such an extent, that they all seem the same.

      its true... they werent the same to begin with, but one super large company seems to think that merging them all together is a good idea.

      hmmmm....

      --

      -- Betting on the survival of the media industry is a serious risk. I advise investing elsewhere.
    2. Re:C# by markmoss · · Score: 2

      This was satire, right?

    3. Re:C# by Cyclopedian · · Score: 3, Insightful
      all the languages are unified to such an extent, that they all seem the same.

      But is that a good thing? What if there's a security hole/bug that was prevalent in the CLR? All the languages that use the CLR would be affected.

      Besides, the concept of "one runtime to rule the all" doesn't sound appealing. Different languages for different uses. Java for cross-plaform compatibility, C/C++ for speed, Perl for quick text parsing, etc.

      -Cyc

    4. Re:C# by diesel_jackass · · Score: 2, Informative

      speaking of education, since when is "informative" spelled I-N-S-I-G-H-T-F-U-L?

      I was just wondering if they changed that since I graduated from college.

      ;-)

    5. Re:C# by Computer! · · Score: 3, Interesting

      What if there's a security hole/bug that was prevalent in the CLR? All the languages that use the CLR would be affected.

      Yeah, but then, when that bug is fixed, all the... oh, wait. (Light goes on above head)

      --
      If you fall off a building, go real limp, because maybe you'll look like a dummy and people will be like hey, free dummy
    6. Re:C# by mestar · · Score: 3, Insightful
      You guys are missing the most important point: there is only one API to program against.


      Think about how much time you need to learn another language: 1-2 hours (or less) to learn the language, days or months to learn the API that language uses/has.


      .NET unifies C run time library (an API) with VB global methods, also VBS Collection classes, or ASP's Server object. Now, every language has access to everything.


      Your language has 'for's', while's, variables, calls, exceptions, math. Perhaps 20-30 keywords. Your Win32 or Posix or .NET has 10.000 calls? 5.000 classes? So we are talking about 30 against 10.000. There are no language wars (and never were), only API wars.


      Languages are trivial, APIs are hard!

      (Please mod this down)

    7. Re:C# by jovlinger · · Score: 4, Insightful

      When you choose a language it shouldn't be for the operational properties of a language. How many people do you think need the speed benefits of C enough to pay the price for using it? About one in a gazzilion.

      The wise programmer chooses a language for it's denotational properties. Such as: how straight forward is it to solve my problem in this language? Does the language provide me with early predicitions as to where the problems with my code are going to be? Does the language have constructs that directly capture the ideas you want to work with?

      So you see, having several languages implemented for one back end, so that I can write my lexing routines in PERL, write my AST construction routines in Java, and my compiler in Scheme, ammounts basically to choosing the right tool for the job.

      How isn't this appealing?

    8. Re:C# by Cato+the+Elder · · Score: 2

      So you see, having several languages implemented for one back end, so that I can write my lexing routines in PERL, write my AST construction routines in Java, and my compiler in Scheme, ammounts basically to choosing the right tool for the job.


      How isn't this appealing?


      It's quite appealing, and the article doesn't make any sense when it talks about runtimes. Languages have been able to compile/interpret to common runtimes for decades. How do you think PERL can call out to C functions? C has a runtime--no stack, no heap, no game. What's "new" about the CLR is that it is a cross-platform and cross-language runtime, the first to be widely promoted as such. You can critize its design as a runtime, but it's hard to argue that it is a useful idea.

    9. Re:C# by joto · · Score: 2
      Yup, that is exactly the point. Languages running on CLR are trivially similar. However, elsewhere in the world, there are languages that is very different from that. Eiffel uses multiple inheritance in interesting ways. Eiffel# does not. C++ has STL. It isn't well supported by the CLR. As far as I know, there are no dynamically typed languages targetting the CLR yet (such as Common Lisp, Smalltalk, Prolog, etc). Very different languages, such as Haskell, APL-derivatives, etc, really need a different runtime. Module systems other than those similar to C#'s module system (e.g. Standard ML) will never be well supported. The list goes on.

      And certainly, not every useful computer language has for- or while-loops (pure functional lanuages doesn't have that). Or variables (forth-dialects doesn't have that (well-depending on viewpoint obviously, they do have global variables)). Most old languages such as C, doesn't have exceptions. On the other hand, most languages have something similar to procedure calls, but they vary widely, some are based on an idealized model of a machine, some on unification, some on term-rewriting, and they can often have very different semantics.

      Conclusion: Computer languages are not similar. Most mainstream languages are, and those running on the CLR even more so. Don't forget what you loose, but don't forget the advantages either...

  2. What is he smoking by rootmonkey · · Score: 5, Interesting

    The author obviously is not in the right industry if he thinks developers only will program in VB.NET, C# or Java. I suppose I shouldn't show up to work on monday for the job I got programming C, because once the word gets out I'm *sure* that C will only be found in a museum.

    --

    Yes but every time I try to see it your way, I get a headache.
    1. Re:What is he smoking by dildofire · · Score: 3, Informative

      large software companies want everyone to believe that C/C++ are completely obselete, to push new users towards their newer technologies. and once you've committed to using those technologies, you'll of course need to buy a copy of ms visual studio or something similar to take full advantage of it. no one makes money if developers use C/C++, vi, gcc, and gdb.

      that being said, i don't think C/C++ is always the right way to go. it all comes down to picking the right tool for the job.

    2. Re:What is he smoking by Milican · · Score: 5, Insightful

      I know you weren't dogging C/C++, but I would like to take this opportunity to point out that for embedded development on a microcontroller, or development on any non-PC platform C is a God send. Programming for PCs is only a small fraction of the whole pie.. by small I mean out of "100 million or so PCs shipped each year; (there are) 6 billion processors that go into embedded systems " - Jack Ganssle Just check your Palm, cellphone, microwave, car, sound card, video card, stereo, fridge, ac unit, gas pump, coke machine, etc.. if you don't believe me ;)

      The embedded market is enormous and C/C++ aren't going away anytime soon.

      JOhn

    3. Re:What is he smoking by joib · · Score: 4, Funny

      [oldest programming language pissing match]
      You program in C for a living? Well, I recently landed a job involving fortran programming. :)
      [/]
      Conclusion: ZDNet author is a dimwit if he believes every programmer in the world does nothing but shopping carts.
      Or should I do shopping carts with "fortran.NET"? Bwahahaha...

    4. Re:What is he smoking by RevAaron · · Score: 2

      Actually, a while back I read somewhere about someone using COBOL to do shoppingcart/ASP stuff, as a part of some .NET/ASP.NET intro/demo. So yeah, you probably will be able to do Fortran.NET ASP crap, as scary as that is.

      --

      Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
    5. Re:What is he smoking by vanguard · · Score: 4, Interesting

      I've given this a fair amount of thought and this is what I came up with:

      When it's possible (right staff, right project, etc.) IT departments try to avoid C/C++.

      Does that mean C is going away? No. It's also unfair to compare it to COBOL. When performance is important C/C++ is the only choice. However, if you have a chance, interpreted languages really do help with code quality and development time.

      If you're coding for an IT department and you are doing it in C it's *probably* because they have no other choice.

      --
      That which does not kill me only makes me whinier
    6. Re:What is he smoking by RevAaron · · Score: 3, Interesting

      I thought Yahoo still used CLISP? Just curious, how is it funny that Yahoo would use a proven, fast, feature-filled, dynamic, and programmer-time efficient language to write their store code?

      --

      Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
    7. Re:What is he smoking by vanguard · · Score: 2

      When I wrote that I was thinking of all the memory related errors that are handled for you. In IT departments you get a developer base with a wide range of skill sets (read, some of us suck) so having things like automated garbage collection and memory allocation are nice to have.

      --
      That which does not kill me only makes me whinier
  3. All developers aren't web developers by Jbrecken · · Score: 5, Insightful

    There may be only two choices for making internet apps, but a lot of development is still going on that uses neither .Net nor J2EE, and will continue to do so for the forseeable future.

    He needed to make it clear that his scope was only web-based development.

    1. Re:All developers aren't web developers by twocents · · Score: 5, Insightful

      and if he was talking about only web based development, then does that not include all of the web scripting languages, such as PHP, Python, Perl, etc, etc, etc.

      Oh why even bother commenting...these stupid little rimshots from ZD are nothing more than attempts to capture the glory days of pitting WP against Word against Ami Pro.

    2. Re:All developers aren't web developers by kubrick · · Score: 2

      and if he was talking about only web based development, then does that not include all of the web scripting languages, such as PHP, Python, Perl, etc, etc, etc.

      And even if we limit that further still to web apps containing some client-side components, what about Flash, SVG or JavaScript & DOM?

      At least plugin interfaces are properly sandboxed (like Java). I'm unsure whether this awareness of security has sunk in at MS yet (although they're reaching the end of the "month off to think about it", so everything should be *much* better now :).

      --
      deus does not exist but if he does
  4. Truth of article depends on who you know by syzxys · · Score: 5, Insightful

    I think this article is basically ZDNet trolling again. After all, the more "controversial" the article, the more hits they get = more ad revenue.

    So today's developers will use one of three languages: Java, C# or VB.Net.

    Strange, a lot of projects I'm familiar with don't use any one of those languages. I think it depends who you talk to.

    I think the author believes in two common fallacies:

    1. C++ has some plus signs after it, so it must be a replacement for C
    2. All problems in systems programming are trivial and have already been solved, and will never need solved again, so there's no need for really low-level languages.

    I'm sure the argument is a lot more valid for big corporations, but they've always been bastions of VB and "4GL's" (even when 4GL was just a marketing term). Basically, /. has been trolled again.

    ---
    Windows 2000/XP stable? safe? secure? 5 lines of simple C code say otherwise!
    1. Re:Truth of article depends on who you know by euphline · · Score: 4, Insightful
      Strange, a lot [apache.org] of projects [kernel.org] I'm [tigris.org] familiar [freebsd.org] with [sourceforge.net] don't use any one of those languages. I think it depends who you talk to.

      Exactly!

      The author is sensationalizing... and forgetting the multitude of languages out there being used for applications. I think if people [people != geeks, people == lusers like this guy] were to really know what the apps they use were made from, they'd *freak*. I'm thinking of the apps I deal with on a daily basis... and the number of languages is tremendous!

      The diversity in languages, runtimes, and platforms is a good thing. It allows us to use the best tool for the job (and there usually is one) and to accomplish our tasks quickly and painlessly.

      -jbn
      (Former VB addict. Now healed and addicted to perl.)

    2. Re:Truth of article depends on who you know by syzxys · · Score: 3, Informative

      Sorry guys, Perl is not where the money is at.

      Strange, my wallet disagrees with you.

      It's true a lot of in-house corporate software uses VB, etc., but a lot of other software (including software produced by major corporations and sold for a LOT of money, e.g. engineering software) doesn't. Like I said originally, it depends on what part of the software development world you look at.

      ---
      Windows 2000/XP stable? safe? secure? 5 lines of simple C code say otherwise!
    3. Re:Truth of article depends on who you know by Arandir · · Score: 2

      I'm thinking of the apps I deal with on a daily basis... and the number of languages is tremendous!

      No kidding. Although most of my software is written in C and C++, a significant portion is not. Most of the control and infrastructure layer for my OS is written in bourne shell and Perl. I update my system using software written in Modula 3 and Ruby. My text editor uses Lisp. Python abounds. I have software written in Objective C, Pascal and even assembler. Components of some software use Scheme.

      On the other hand, NOTHING in my system is written in C#, VB.Net or even Java.

      --
      A Government Is a Body of People, Usually Notably Ungoverned
    4. Re:Truth of article depends on who you know by ianezz · · Score: 2
      Strange, my wallet disagrees with you.

      And even if your wallet is not enough evidence: Perl is Instrumental in Data Warehouse for Italy's Top Bank.

    5. Re:Truth of article depends on who you know by hoggy · · Score: 2

      Strange, a lot of projects I'm familiar with don't use any one of those languages. I think it depends who you talk to.

      You're talking about a relatively few open source projects. You have to remember that the vast majority of code (like 90% of all software written) is written entirely in-house by IT departments of organisations. This code never sees the light of day and you are unlikely to know anything about it unless you work for one of those organisations.

      As someone else pointed out, IT departments are slowly shifting to the use of interpreted rapid development languages. Computers are fast enough and no-one wants the headache of maintaining large custom bodies of C/C++. [And before someone marks me as a troll, C and C++ are more difficult to maintain when you have limited IT resources. You need to be a very good programmer to write maintainable C and C++ code, and good programmers are few and expensive.]

      The last large bank I worked at, pretty much every single new development project was being done in Java. That included web projects, desktop applications, back-end analytical servers, etc. For major places now the platform of choice is not a particular machine architecture, but a particular J2EE container. Microsoft realise this, that's why their throwing weight behind .NET.

      Follow the money: Microsoft sell their development tools into in-house IT departments. At the aforementioned place I was working we were throwing out Visual C++ applications by the bucketload and redeveloping in Java. That means no new VC++ licenses and no need for MS applications servers. Microsoft wouldn't be doing it if they weren't very aware of which way the market is going.

    6. Re:Truth of article depends on who you know by td · · Score: 2

      The first time I heard this was in the Unix Room at Bell Labs, Murray Hill, on January 2, 1984 (or some day later that week), right after Bjarne walked in and said that he'd just decided to call his new language C++. I don't remember who said it, but I am the one that pointed out the connection to Newspeak, in which ++ is used to mark superlatives. Bjarne certainly remembers this, as he has retailed it in at least one of his books.

      --
      -Tom Duff
  5. Interesting... but far too short and simple by msuzio · · Score: 5, Insightful

    The short editorial is good in that it points out what I suspect most developers already knew (but the marketers would never admit) -- there basically are very few choices offered in terms of "how to do it". As a matter of fact, I know in my part of the country, 95% of Internet application work being advertised is one of two things: ASP/DCOM apps, or J2EE apps (using IBM Websphere, sometimes WebLogic).
    That's it. No Web job I looked at in my two months of searching for a job recently specified anything else. No Perl. No C++ unless the job also specified ASP and DCOM. Certainly no Zope, Tcl, etc.
    Is this because no one uses any other technologies? No, of course not... but those other approachs lack a strong marketing organization behind them... Programming is as prone to the influence of hype as anything else.

    That is what I think is important to assert; that other choices do exist, and it should be our job as supposed experts to investigate all the options. Diversity is a healthy attribute to have... Let's hope the "hyped" languages never succeed in marginalizing all other approaches.

    1. Re:Interesting... but far too short and simple by WasterDave · · Score: 2

      Bizaarely I am starting to see adverts for PHP developers. There is C++ too, although it was never suited to web development.

      and it should be our job as supposed experts to investigate all the options

      Sure, but you need people to maintain the code afterwards, and that basically means make CS graduates want to code in it. The other approaches *have* been marginalized :(

      Dave

      --
      I write a blog now, you should be afraid.
    2. Re:Interesting... but far too short and simple by Hiro+Antagonist · · Score: 2

      Homogenity may be healthy in some obscure, theory-based sense; but, let me assure you: homogenity is not a good thing to the people who run businesses.

      Homogenity is having to pay millions of dollars in licensing fees to a seperate corporation so you can develop a simple in-house application that doesn't have a shrink-wrapped equivalent.

      Homogenity is having your entire business' electronic infrastructure annhiliated by a Norweigan teenager because you use one operating system to span server, workstation, and PDA.

      Homogenity is having to answer calls from two hundred end users, each having an identical workstation posessing a broken foot pedal and drink coaster.

      --

      --
      I Hit the Karma Cap, and All I Got Was This Lousy .sig.
    3. Re:Interesting... but far too short and simple by msuzio · · Score: 2

      I'm hardly talking about "some guy" making a decision. I'm talking about a professional, who presumably knows his ass from his elbow, who picked the right language for the problem domain. If the app lasted since '83, paying $120K to maintain it is chump change... obviously, *something* worked, if you kept it that long :-).
      Language decisions (indeed, all architectural decisions) should be made with all the known variables considered... and a minimum of "hype". Don't use J2EE because it's "cool"... use it because it solves the problem you have, and saves time or money. If it *doesn't* do that, why the fsck would you use it????

      I'm asking for open minds. Too often, decisions on the technology to use are made for the wrong reasons. That situation isn't ever going to completely go away, of course. But if you want to be more than a hack programmer, you should do your best to fight bad decisions.

  6. Funny by ergo98 · · Score: 4, Insightful
    It's funny how C++ (and the subset C) is constantly glossed over as some archaic remnant of the past, yet the overwhelming majority of commercial appliations continue to be developed in C++, and likely will continue to for some time. It's an interesting scenario of Fire and Motion. It always makes me wonder if all of the .NET and Visual Basic fanatics every stop and think "Gosh, how many Microsoft products are built with .NET or Visual Basic?" (they'd be surprized that the number is very close to 0, and will likely remain so). Silver bullet languages give short term bursts of productivity, followed by the reality that the nuances of languages become trivial in the long term of a real project.

    Just intriguing to see. J2EE, .NET, etc., all definitely have a place, but it is interesting seeing how many people hop on the bandwagon without requiring the developing company to prove that they eat their own dogfood.

  7. Should have specified Windows-only developers by gorillasoft · · Score: 2, Interesting

    The question left for the reader is where this leaves developers. Was it a better world when developers could chose different languages based on the requirements of the application? Or should all languages do the same thing with different syntaxes? Microsoft has decided which way it prefers, and choice is out.

    You still can choose different languages. Nothing says you can't use C/C++, VB 6, Perl, Python, or whatever else you want. While the implication in the article is that all developers have only two choices, the article should have said that Windows-specific developers are left with the two choices of Java or the CLR languages while other developers are still free to choose the tools that fit the problem. Nothing has changed unless you are only going to do Win32 programming.

    1. Re:Should have specified Windows-only developers by jc42 · · Score: 2, Interesting

      Heh, heh. I still keep running across studies that turn up the unexpected result that one of the most widely-used languages is still called "Fortran".

      Haven't used that little monster in years, myself. But I have been somewhat bemused by the fact that over the past few years, I've used perl and tcl for pretty much all of the jobs I've been hired for. I never thought, when I started using these a decade ago, that people would ever actually be looking to hire people who knew them. I just learned them because it was obvious they were useful tools of the trade.

      But the "top" languages are all pretty similar, and pretty much all descendents of the algol/pascal/C innovation more than a quarter of a century ago. People keep coming up with variations on the syntax, mostly so that they can claim to have a "new, improved" language. But they are all somorphic under the skin.

      Now if we could only use some of the power of languages like prolog or snobol ... or even lisp. But I guess it'll be more decades still before the commercial world advances to what we had back in the 60's.

      --
      Those who do study history are doomed to stand helplessly by while everyone else repeats it.
    2. Re:Should have specified Windows-only developers by mz001b · · Score: 3, Insightful
      I just Fortran 90 daily, as part of a computational fluid dynamics project. Fortran 90 is a lot different than Fortran 77 -- it has pointers, modules, no more punch card dictated format, array syntax, ... In someways it is nice, but one of the great things about Fortran 77 was that the language was so simple that the compiler did not have to make any assumptions. There were no pointers or dynamically allocated memory, so lots of optimizations could be made, which is why Fortran performed so well. You will find Fortran compilers on all the supercomputers on the Top 500 list today, and they are used very heavily. There are a lot of numerical algorithms coded in Fortran (netlib), that have been tested and looked over by the community for 20-30 years.

      That being said, for anything other than raw numerical computations, I prefer C.

  8. Except by The+Cat · · Score: 2

    ...the programming language being used by a potential employer.

  9. Not Quite Right by erasmus_ · · Score: 2, Interesting

    The article is overall pretty positive, but I do disagree with a few things.

    I specified VB.Net as opposed to VB; even though Microsoft would have you believe otherwise, the two are really different languages.

    I don't think MS is really trying to hide that VB.Net is very different, and many many VB developers are mad at it for changing things so dramatically. Although the syntax is close, there were many changes, some make necessary by the fact that everything is now an object, and some just to drop bad practices (Wend, Goto, Variant, As Any, etc.).

    The article also makes it seem like MS is advocating C# completely replacing C++, which it is not. C++ is still included in Visual Studio.NET and although MS is pushing C#, it's not going away in the MS toolbox.

    If you want an example of MS dropping a language, look at Visual FoxPro. Anyone remember FoxPro? MS is still officially "no comment" on the matter, I wish they would just come out and announce that it's dead.

    The different languages for CLR being alike to skins is a pretty original argument. We could pick it apart, but I see where he's going with it.

    --
    Please subscribe to see the more insightful version of th
  10. Fairly Microsoft Centric by scotch · · Score: 5, Insightful
    This is a fairly Microsoft oriented editorial, and a little light on meat at that. Examples: assumptions that C#, .NET, and VB.net do or will by years end account for the bulk of programming langauges, with an "also-ran" entry for Java.

    As far as I know (not far?) C++ and C are still widely used in industry. The editor speaks of C++ significance as something of the past: 5-years ago.

    GUI skins are discussed as a pretty weak analogy of language interfaces to common runtime libraries. Then of course, the editors example of a GUI skin is Windows XP.

    Where I work, C++ is the prime langauge. But then, we're worried about cross-platform development. Maybe that's a thing of the past, too.

    Don't waste too many brain cells on this one.

    --
    XML causes global warming.
    1. Re:Fairly Microsoft Centric by 4of12 · · Score: 2

      Along the same lines as the article, which pointed out how VB gets transmogrified into VB.NET, I was reminded of an analogous example from the OSS world.

      The Jython implementation of Python.

      --
      "Provided by the management for your protection."
    2. Re:Fairly Microsoft Centric by bwt · · Score: 2

      Jython is very similar to Python. VB.NET is a much bigger alteration to VB that Jython is to Python.

      Any since we're on the topic, I think Jython and JRuby deserve a lot more interest. The ability to leverage the huge class libraries of Java with the elegence of object oriented scripting is a tremendous enabler for both Java and Ruby/Python.

      Of course, the bonehead article doesn't seem to even acknowledge the increasing importance of scripting languages. How this bozo could not even mention perl, let alone python or ruby is insane.

  11. Languages by bentini · · Score: 5, Interesting

    Hmm... I'm no expert, but neither, apparently, is this guy.
    A) All languages share a common runtime: Assembly. Just because I can run LISP and C on the same computer/runtime doesn't mean that they're similar. CS is all about abstraction. Of course you can have the same underlying structure, you can have different underlying structures too. That's the beauty of abstraction!
    B) Java and C# are not the logical successors to C/C++. They're more like a smalltalk with a C-syntax and some trade-offs for efficiency. In terms of providing system calls and API's that are cross-platform... Well, even more like smalltalk!!
    C) Remember, C++ started out as a preprocessor for C. Any "C++" code just became C code that was uglier to look at. The difference between procedural and object-oriented isn't that big a deal, other than it's often easier to think in OO and easier to implement a language that's procedural.
    For a more interesting observation about the same problem that comes from Rob Pike (big UNIX guy at Bell Labs, co-wrote the UNIX Programming Environment) go here: Systems Software Research Is Irrelevant. It makes many good points about how cs is more the same than different now as compare to 10, 15 even 20 years ago!

  12. Re:All languages are *not* the same by WildBeast · · Score: 3, Insightful

    Like Python, Perl, Ada, Eiffel, VB, C#, Cobol, etc.? I don't look at them as skins

  13. I Disagree by puppetman · · Score: 4, Insightful

    There are still millions of lines of COBOL, FORTRAN. And you can still develop in ADA, LISP, Scheme, etc. Compilers exist.

    Sure - Java, Pythol, C# are pretty similar. But what about Lua? PERL? Or CURL?

    Sounds like a case of the "good ol' days".

    1. Re:I Disagree by cyberlync · · Score: 2

      You speak as if Ada (notice correct capitalization, its a name not an acronym) is dead or outdated. It is not at all dead or outdated. It was updated in 1995, becoming the first standardized Object Oriented langugage and is one of the best languages available for large project development. There is even a really great compiler out there for it called gnat. Its even going to be included in the gcc tool chain in v3.1. So please dont speak as if this were a dead or outdated language

      --
      I'm a programmer, I don't have to spell correctly; I just have to spell consistently
    2. Re:I Disagree by Black+Parrot · · Score: 2, Informative


      > [Ada] is not at all dead or outdated. It was updated in 1995...

      And the '0X version is under development right now.

      > Its even going to be included in the gcc tool chain in v3.1.

      FWIW, about two weeks ago I downloaded gcc 3.1 from the cvs snapshot and tried it out. I didn't have time to download/run the test suite, but it worked fine on several of my programs which I did try out. IIRC, the 3.1 branch was supposed to fork off a week or so ago, and the target release date is only a couple of months from now.

      Also notice that the GNU Visual Debugger is written in Ada. It currently works for Ada, C, and C++, but is designed to handle additional languages as plugins.

      --
      Sheesh, evil *and* a jerk. -- Jade
    3. Re:I Disagree by puppetman · · Score: 2

      "There are still millions of lines of COBOL, FORTRAN. And you can still develop in ADA, LISP, Scheme, etc."

      Where did I say that Ada was dead? I implied that Cobol/Fortran were dead (but only implied). I think my statement, at most, implies that Ada, LISP and Scheme are lesser-used languages. And they are - C, C++, Java, PERL, etc are more widely used. Ada I believe was originally a military-language, and not widely used outside the US military.

  14. is it just me by jd142 · · Score: 2

    or did this guy not seem to know what the heck he was talking about. Plus he completely ignores languages like Delphi, Kylix, PERL, PHP, etc.

    Or is it just that he works for ZD?

  15. Of course, they are all turning compatable by bluGill · · Score: 2

    Nearly every programing lanagage is turning compatable (or turning complete). There really isn't much more to say. If you can write the program, you can in any language.

    The only exception I can think of is sql, and that was never intended to be a programing language. (although i've not kept up, it might be turning complete by now with extentions I'm not aware of)

    Revolutionary devolpment has stagnated, but that is good. House devolpment has pretty much done the same thing, I know people who live in houses 150 years old, and they are contrstured much the same as modern houses. Sure a 2x4 has a standard size now, while it didn't then, but that is a minor evolutionary change, not a revolution. We no better than do write languages the way cobol was written, but the only revolution since cobol is OOA, and there is OO-cobol for those who want it. (there were other evolutions that cobol missed out on, and some would argue that OOA isn't not a revolution either.

    1. Re:Of course, they are all turning compatable by marauder · · Score: 2, Informative

      Mate, Turing complete. As in, Alan Turing. As in the father of computing.

  16. More by inerte · · Score: 2, Interesting

    The author suggests, clearly "Microsoft has decided which way it prefers, and choice is out.", and not that developers face today a hard choice when looking for programming languages.

    It's easy to see the difference here. This article only scratches the "All languages look the same", specially for coders. Maybe for deployers (if you make this separation).

    He even let the essential point, for developers, by throwing questions (2) to the air.

    Well, let me answer what the article should have touched. It's not the programming language that MS or Sun is controlling, but the tasks to be performed that they are limitating. By making a common programming framework, so widely marketed and, good or bad, soon to be accepted, from Microsoft or not, they are essentially narrowing the solutions that one might come for a problem, since you have to do the 'framework-way'.

    Yes, it's good to have a common ground where applications, services and solutions can be distributed. But a lot of problems will arise when you can't (or perhaps should not) use the right tool for the right job.

  17. Re:Is MS *really* .NET only ? by ergo98 · · Score: 2, Informative

    Visual Studio.NET includes Visual C++, and it remains the most important of the products (I'm sure it irritates the VC team seeing the marketing droids out in force selling VB.NET and C#.NET when the C++ engine in Visual Studio.NET continues to be improved, with optimization enhancements that further extend its performance brilliance).

  18. Probably ZDNet's fault by wrinkledshirt · · Score: 2, Interesting

    Usually in media the editorial process is such that the writer doesn't determine the headlines or titles for his articles -- that'll happen at the production stage, at which point the article is out of the writer's hands. I agree that it should have been made clear, though, and if I were the writer I'd be getting on the editorial staff to get on the web staff to change it, because it reflects poorly on him, when it shouldn't.

    --

    --------
    Bleah! Heh heh heh... BLEAH BLEAH!!! Ha ha ha ha...

  19. He is a jounalist, not a programmer... by rufusdufus · · Score: 5, Insightful

    This guy is saying that programmers only have 3 choices; Java, C# or VB. He backs this up by stating Java is what you learn in school these days.

    Do not buy into his "reasoning". When I was in school, they were teaching Scheme and Lisp--make no mistake, what they teach is school is not what will build the future! The programmers who only learned what the professor told them became tech support and helpdesk. In those days, to be a 'real programmer' you had to know assembler and 'C'. They made the big bucks, and all major operating systems and applications were written in them.

    Today, things haven't really changed that much. Professors are teaching goofy stuff, programmers get a degree but never learned pointers, and the major software is still written in C. The major difference is the success of C++. Yes, there are lots of Java programmers out there, but really fairly few *major* Java programs. The major OS's and applications are still written in C and C++,rather than assembly.

    Of course, in the end, if you learn 'right', what language you use is simply a choice, like a carpenter might use a metal hammer for nails, and a rubber hammer for wooden pegs. The right tool for the job. Today, the jury is out on C# being the right tool for anything, and even Java is still a new fangled gadget that hasn't fully proven itself in the toolbox.

    1. Re:He is a jounalist, not a programmer... by rufusdufus · · Score: 2

      It may seem incredible that anyone gets a degree without knowing pointers, as you learned it first year (as it should be). However, when interviewing candidates for hire, the big picture comes out that many schools jumped on the java bandwagon, and actually thought that teaching pointers was some sort of corruption. Thus, a CS degree with no experience with pointers. In industry, as you may expect, pointers are a must and anyone who didn't learn them simply cannot be hired (for top coding jobs).

    2. Re:He is a jounalist, not a programmer... by joib · · Score: 2

      Yup, I agree. I learned Java in school too. My upcoming new job involves fortran programming. Go figure... :)

    3. Re:He is a jounalist, not a programmer... by 3am · · Score: 2, Insightful

      As has no doubt been mentioned thousands of times across hundreds of Slashdot articles, Java has proven itself in the field. Huge enterprise applications are written in it. I've personally seen it used as middleware between old big iron and web interfaces/secure messaging systems in the health care industry.

      It is less likely to have bugs, is less susceptible to security problems like buffer overflows, and is fast enough for most things. The major advange of java (imo) is that you can develop complex, powerful programs at a lower cost (eliminate huge class of bugs that need to be tested) and with less maintainence (only the VM needs to be ported, not applications).

      Now someone can feel free to call me and idiot and rattle off the results of dozens of benchmarks proving c/c++ are faster, and how the better programmer who programs c or c++ is not likely to make mistakes the aforementioned mistakes like the newbies who program in java.

      It still won't change the fact that there's a whole lot of java code out there doing useful stuff, and has been for years now.

      --

      A: None. The Universe spins the bulb, and the Zen master merely stays out of the way.
    4. Re:He is a jounalist, not a programmer... by Ramshackle · · Score: 3, Insightful

      You have no idea what you're talking about.

      None.

      Java is used all over the place. The vast majority of Fortune 500 companies have custom applications using enterprise Java. J2EE is the standard for new systems doing back-end transaction processing. The libraries are mature and very robust. C++ doesn't have anything standardized as part of the language that even remotely competes.

      This isn't 1970.

    5. Re:He is a jounalist, not a programmer... by Waffle+Iron · · Score: 3, Insightful
      Schools should be teaching many languages to each student. That way, they will be prepared to learn any language they need on the job in short order.

      In the early 80's, I used many languages in my CS courses: Pascal, Basic, Forth, PDP-11 assembler, 6502 assembler, PL-1, FORTRAN, custom Microcode and Lisp. My classes also focused on fundamental algorithms, so I got exposed to 'pointers' via array inices even in languages that didn't use actual pointers.

      When I got to my first job, I had actually never seen a single line of C code. However, using the wide background I had been taught, I was able to get up to speed on C in no time. Within a week, coding in C like a pro.

      Hopefully they aren't teaching Java to the exclusion of any other language these days.

    6. Re:He is a jounalist, not a programmer... by BitwizeGHC · · Score: 2

      Forward-looking schools often use Scheme, or maybe even something gnarly like Ada, as a teaching language. However, a great many of the CS programs that I've seen/heard of are essentially mills for churning out code grinders to put to work writing payroll and billing code for insurance companies and their ilk. They will start you out on Java as a nice safe toy language to learn in, then migrate you to the suite of languages supported by Microsoft Visual Studio, and really that's about it unless you opt to take something exotic like programming languages, logic programming, or AI.

      Me, I learn about two or three new languages a year, on my own time. Scheme and LISP are, however, very dear to my heart.

      --
      N4st0r, trixx0r h0bb1tz0rz! Th3y st0l3 0ur pr3c10uzz!
    7. Re:He is a jounalist, not a programmer... by epukinsk · · Score: 2

      Schools should be teaching many languages to each student. That way, they will be prepared to learn any language they need on the job in short order.

      Schools should teach whatever language suits the concepts they are trying to teach. It's not their job to teach students minutia like syntax.

      I learned C++ for my introductory courses, Java in software engineering. We're now using C++ again for algorithms, but I've gone out and learned PHP and Perl on my own for the web stuff I do in my spare time. And part of the reason I run GNOME and not KDE is so I can learn C. I do my homework in linux and port to Windows to hand into my T.A.'s so I get a little taste of the cross-platform issues.

      I take the responsibility for learning these things myself. I don't want my professors to teach me them because it's a waste of their time and expertise. Teach me theory, teach me wisdom, don't teach me pointers.

      -Erik

    8. Re:He is a jounalist, not a programmer... by Kirruth · · Score: 2
      This guy is saying that programmers only have 3 choices; Java, C# or VB. He backs this up by stating Java is what you learn in school these days.

      You're right in highlighting how lame these are. If programmers only have three choices, they should probably choose Perl, C, and the Bash shell. Moving up a level of abstraction, Python, C++ and a functional language like Haskell might be another three choices. We have such powerful, proven, truly open source tools, we can treat this kind of corporate FUD with sneering derision.

      --
      "Well, put a stake in my heart and drag me into sunlight."
    9. Re:He is a jounalist, not a programmer... by Arandir · · Score: 2

      I learned Pascal and Fortran my first year in college. Funny, I've never once used those languages on the job.

      Java is chosen as a teaching language because it is well suited for a teaching language. Period.

      --
      A Government Is a Body of People, Usually Notably Ungoverned
    10. Re:He is a jounalist, not a programmer... by rufusdufus · · Score: 2

      In a sense what you're saying is right on. However, one would expect anyone who recieves a degree in Computer Science would be able to deal with pointers. If the prof is "wasting his time" to teach it to you, at least he should put it on the "test". If after 4 years of programming you failed to learn them, if not by direct instruction then by self-learning and experience, should you be given that piece of paper that says you know what you're doing?

    11. Re:He is a jounalist, not a programmer... by staplin · · Score: 2

      And there are major java projects that aren't even J2EE, just J2SE.

      For one, I'm developing/supporting a satellite scheduling system for a commercial imaging satellite, in Java. And as it evolves, it'll be replacing other code written in C and C++.

      To claim that all major systems are still C based is ridiculous...

  20. bunch of crap by mrpotato · · Score: 5, Informative
    The article doesn't say anything, and is really aimed at manager-type people.

    Example:
    Look at some of the other languages that have been ported to the CLR. In every case, those languages have had to lose something important that made them different to fit the common dominator offered by the CLR. Microsoft has brought the notion of skins to programming indeed.
    (emphasis mine)

    What a gratuitous (and feeble) claim. The author obviously think that about 3 languages exists: C(and friends), Java and VB.

    Some functionnal languages have been successfully ported to the CLR, and they didn't need to be amputated for that.

    For example, Standard ML and Mercury. Both have been succesfully ported to the CLR without violence to those languages.

    So, in conclusion, I agree that when you know only 3 procedural/OO languages you might be under the impression that all languages look alike.

    Move along, nothing to see here.

    --

    cheers
    1. Re:bunch of crap by lavaforge · · Score: 2

      Actually, I remember reading an article on Active state about Perl.net. It said that it used typed variables. What kind of blasphemy is this, and how is that not amputating a language?

    2. Re:bunch of crap by mrpotato · · Score: 3, Informative
      Perl has always used typed variable, but those are "dynamically typed" instead of "statically typed" like the .NET architecture is.

      Also, PerlNET is no blasphemy: you can still write Perl code as you've always had. It will work, you only need a `[interface: pure]' pseudo custom attribute in the interface specification.

      Still, PerlNET also supports statically typed variables: they are there as an extension. So of course, the language was not amputated, it was extended to make better use of the CLR architecture.

      An interesting thing is that you still can use CPAN modules with PerlNET and they will work.

      --

      cheers
  21. Question by The+Cat · · Score: 5, Funny

    What's .NET written in?

    oh...

    hmmmm....

    GOODNIGHT EVERYBODY!!!!!!!

    1. Re:Question by sharkey · · Score: 4, Funny

      What's .NET written in?

      Orwellian

      --

      --
      "Outlook not so good." That magic 8-ball knows everything! I'll ask about Exchange Server next.
  22. Re:All languages are *not* the same by Rupert · · Score: 2

    Eiffel.NET is not Eiffel
    VB.NET is not VB

    they are just C# with a different syntax.

    Scheme has been particularly butchered.

    --

    --
    E_NOSIG
  23. Re:market domination by abigor · · Score: 2, Insightful

    He's primarily referring to the app server (aka web services) market. The implicit assumption is that client machines (your desktop) will do most of their work via web services. These will be implemented on .Net (soon) or J2EE (now). He's not talking about client-side app development so much.

    Keep in mind that Java, for example, is very fast as a server-side language.

    The real question is: is his assumption correct? Will web services take off to such an extent that the majority of new development is done in these languages?

  24. Shucks by medcalf · · Score: 3, Informative

    I guess I'll have to tell my boss I can no longer do Perl scripting for him. And I suppose I'll have to stop writing the shareware game I'm working on until I have time to convert the existing Objective-C to C# - assuming that there will be a MacOS X C# runtime and IDE that I can use. And I suppose all of that C code I've written in the past will have to be junked by the people using it.

    Oh, well. Another day, another stupid analyst.

    --
    -- Two men say they're Jesus. One of them must be wrong. - Dire Straits
  25. Guess it's all where you work by pongo000 · · Score: 4, Interesting

    That's funny...I've been developing for many years, for a number of very large companies, and I've seen no indication of a mass exodus towards J2EE and .NET. With a large base of C/C++ legacy apps already in place, there's not a chance in hell J2EE and .NET will "rule the world" anytime soon (if at all). I've seen too many "large-scale enterprise solutions" become waterlogged by voluminous requirements birthed from the loins of the J2EE standard, or slowed to a crawl by megadollar application servers that simply can't scale worth a damn.

    Sounds like this guy's just trying to make a name for himself. To me, it simply appears to be a load of FUD, with no basis in fact (like most FUD).

  26. Java and C are the only languages? Since when? by the_rev_matt · · Score: 2

    I'd argue that there's a lot more perl out there doing heavy duty than there is Java. Python (by way of Zope) is also gaining in popularity.

    --
    this is getting old and so are you

    blog

  27. LISP, Scheme, Prolog? by robbyjo · · Score: 3, Interesting

    Author seemed to not consider Scheme and Prolog. Meanwhile its not widely used, they find a niche in research community. They use different paradigm, not just a mere different syntax.

    It is true that general programming language is dominated by OO-based or imperative based programming language, but things keep improving. Like Java -- it includes features on type safety to some extent. Newer programming languages are designed to ease developers for rapid development phase and overcome various limitations from their predecessors. Thus, developers in turn do have choices: Whether they want to use the newer ones or not.

    Since programming languages are designed to ease users, they are specifically designed with as minimal amount of learning as possible. Hence, since virtually all programmers are familiar to C/C++ syntaxes, the design of the new programming languages tend to adopt them in the hope that the language will be quickly embraced. Thus, this explains why the newly programming languages are like C/C++ or using this paradigm.

    Now OOP paradigm has "invaded" the market. Aspect Oriented Programming is yet another new concept to supplant the OOP. When better paradigm comes, it will eventually be embraced after it has been proven cost-wise and time-wise worthy. We will witness whether this is true in the near future.

    Just my 2c.

    --

    --
    Error 500: Internal sig error
    1. Re:LISP, Scheme, Prolog? by brer_rabbit · · Score: 4, Funny
      Author seemed to not consider

      while you've got excellent pointts, your post should of ended there. The author simply didn't consider much of anything. His boss must of asked him to write an article about that newfound TV/typewriter combo thang.

  28. Academics and Real Life by Tim+Ward · · Score: 3, Interesting

    In fact, if one were to look at computer science departments across the country, you'd see that Java has replaced C++.

    Yes, and don't we all remember computer science departments espousing all sorts of other languages that had no commercial following (AlgolW) or limited mainstream application (Pascal)?

    Computer science courses use computer languages for a variety of purposes, such as teaching algorithms, language design and compiler writing, several of which are quite different to the requirements of engineers building substantial systems.

    Yes, language B might end up supplanting language A, and if it does you might note in retrospect that computer science courses started using language B before engineers, but you can't make the deduction the other way around.

    Just check out how many Java contractors are currently out of work in the UK and compare with C++ contractors.

  29. Um... by gergi · · Score: 3, Insightful

    From the article:
    So today's developers will use one of three languages: Java, C# or VB.Net.

    Does anyone else get the feeling this guy has never done any serious programming?
    - VB.Net is completely useless for the majority of software being developed. (Personally, I think it's totally useless but I digress...)
    - C# hasn't really shown me anything that Java hasn't so I don't really see how it's going to replace C/C++ in places Java hasn't.
    - Java... wonderful Java... the same Java that was predicted to take over the world several years ago (much like this article is saying). Now, I personally think Java is great for many things but I also think it's unsuited for many others.

    And I really don't see scripting languages (e.g. Perl, Python) going away real soon... and C isn't going ANYWHERE for quite awhile - what language do you think your OS is programmed in? How about your cell phone software? Palm software? I don't see any of these programmed in ANY of the languages the author mentions.

    Oh and what about AI? Which of these is going to replace Lisp and other functional languages?

    --
    Nosce te Ipsum
    1. Re:Um... by Fweeky · · Score: 2

      > scripting languages (e.g. Perl, Python)

      Scripting languages != interpreted languages, and you're right, they're not going away anytime soon.

      Languages like Python and Ruby (and even Perl) are moving more towards Java than /bin/sh; they have good, well developed object models, significant standard libraries, excellent stability, powerful syntax etc.

      With Parrot they're even moving towards a common runtime, with code developed in one language available to any other targeted at it.

      With these languages moving to virtual machines, and with them being either extended or built from the start to support more advanced features like OO/exceptions/{insert favourite buzzword}, they're definately on their way to making dynamic languages (hey, look, ma, another buzzword) a pretty nice alternative/complement.

      Oh, and with Parrot being what Perl6 is aiming for, it's virtually guaranteed to end up on pretty much every Unix box on earth. Can you say that about .NET or Java? :)

  30. Re:Lets see here... by rufusdufus · · Score: 2

    Just to nitpick, I'd like to point out that describing LISP as "radically different" ignores history. LISP was one of the very first programming languages, and in fact flows with the theoretical mathematical syntaxes better than the languages that followed. Thus in fact, C is the "radicaly different" one, that revolutionized progamming by ignoring theory and math and focusing on practicality.

  31. Theoretical Implications by Ezubaric · · Score: 2

    Perhaps this is the result of being stuck in an academic situation right now, but perhaps the idea that all languages are the same is because - get this! - they are.

    When one can reduce anything to a Turing machine, there isn't anything we can't do with say BASIC that we can now do with C# or Python. It might be faster (to a degree) or more elegant, but still possible.

    Perhaps we should focus on pushing the envelope computationally by demanding new models of computation that would break the Church-Turing universiality of computation. Biological or quantum computers have the means to give programmers new ideas that are completely different from what we've already seen - just look at Shor's or Grover's algorithms for quantum computers. These CANNOT be done on a regular computer.

    --

    ----------
    I am an expert in electricity. My father held the chair of applied electricity at the state prision.
    1. Re:Theoretical Implications by jacobm · · Score: 2

      If I here one more person pontificate about god-damn Turing-completeness, I'm gonna beat my poor innocent co-worker Gustavo here to a bloody pulp.

      Once and for all: YES, EVERY DAMN LANGUAGE AND ITS MOTHER IS TURING-COMPLETE. Turing-machine language is Turing-complete. Unlambda is Turing-complete. Life is Turing-complete. Programming in one is not, however, anything like programming in the other. They are NOT "the same" any more than my co-worker Gustavo is the same as a chicken, though they're both DNA-complete.

      If what you're interested in is actually programming in a language as opposed to proving theorems about it, Turing-completeness is almost entirely irrelevant. There are distinct, major, definite benefits to using one Turing-complete language over another.

      --
      -jacob
    2. Re:Theoretical Implications by jacobm · · Score: 2

      I just meant that any language you're likely to ever use as a "real programming language" is Turing-complete, not that every possible language is. (Of course, that's a lie: no language on a real computer is Turing-complete, as computers have finite state, but gads, let's not be technical.)

      --
      -jacob
  32. Re:OO isn't a language... by Eryq · · Score: 2, Informative

    You're not completely wrong. All the classic ingredients of OOP -- messaging syntax, encapsulation, inheritance, etc. -- can be simulated in a non-OO language by consistent use of naming conventions, function-argument-order conventions, etc. In the end, it all reduces to machine code anyway, after all.

    But a true OO language makes these things
    easier, by providing special syntax for message passing, enforcing encapsulation, etc. I'd rather write:

    somePerson.setName("Foo")

    than:

    person_setName(somePerson, "Foo")

    --
    I'm a bloodsucking fiend! Look at my outfit!
  33. Disappointing by GSV+NegotiableEthics · · Score: 3, Insightful
    I was a little disappointed by this, for two reasons.

    Firstly, the writer has donned blinkers and cannot see outside the very limited problem of the quick construction of client-server systems based on reusable components.

    Secondly, it really doesn't matter what the implementation language is. It never did. A talented programmer will use what is there. In the course of my career I have used everything from PDP11 assembler to perl by way of Cobol, Pascal, C/C++ and Java. The writer just doesn't seem to appreciate how much code holding the internet together is in languages that are rather more mature and fitter for purpose than the latest craze has a chance to be.

    Color me cynical, but I suspect he's only talking about this particular thing because that's the kind of thing that gets convention-goers to bug their bosses to send them to.

  34. Comment removed by account_deleted · · Score: 5, Interesting

    Comment removed based on user account deletion

  35. C# & .NET are not new or innovative by jmccay · · Score: 2

    Neither is new or inovative. C# is a combination of C++ & Java with a few changes here and there.

    As for .NET, Microsoft just combined existing technologies for other areas. Take there idea to compile everything down to one to one language. It is not new. I go into this here. The only thing Borland didn't do is create a an interpreter for the common language. If they would have done that, you'd have part of the new compiler that Microsoft has in VisualStudio.Net. I should also mention that Microsoft owns a portions of Borland.
    The idea that Microsoft created this completely new and innovative technology is strictly a PR campaign.

    --
    At the next eco-hypocrisy-meeting, count the private jets used to get to the meeting. Should be interesting to see that
    1. Re:C# & .NET are not new or innovative by AndroidCat · · Score: 2

      I could be wrong, but the Borland stock Microsoft owns is non-voting stock. (Part of the settlement for Microsoft spending $2M to buy Borland's chief architect to work on C#.)

      --
      One line blog. I hear that they're called Twitters now.
    2. Re:C# & .NET are not new or innovative by jmccay · · Score: 2

      I think you are thinking of Apple. As long as they haven sold it, it was reported here, but also including as a part of the same deal was the sharing of technology. You will notice Microsoft paid Borland (then called Inprise) $100 Million for "the rights to use Inprise-patented technology in Microsoft products and to settle a number of long-standing patent and technology licensing issues" (this is from the actual press release. I wouldn't be surprised if compiling to a common language was one of the things they paid the rights to use.

      --
      At the next eco-hypocrisy-meeting, count the private jets used to get to the meeting. Should be interesting to see that
  36. Re:Skinnable Functionality...what else is new? by dstone · · Score: 3, Insightful

    Well, one thing that is new is the .NET Framework SDK. For the first time, ALL data types and system classes are identical for .NET programmers, regardless of language.

    COM+ tried to do something like this, but there were always some data type and wrapper issues with Win32, and one language or another (usually C++) came out "ahead" not in terms of programmer preference, but in terms of it couldn't technically be used for one reason or another. Well, without some major hackage anyways. For example, firing up the VB6 IDE allowed you to turn around a quick, data-enabled app more quickly than the equivalent VC++ app, though you were stuck with a kludgy language and using previously built DLLs from other languages involved a lot of work. On the other hand, if you wanted to build a system service, C++ made it easier. But if you wanted to write server-side scripting, you were back to bastardized VBScript syntax. Etc. Your question was "how does using a CLR make this any different?", and I think this is one very clear way. Of course, it comes at a small peformance price (and certain C programmers will claim some "dumbing down" or lowest-common-denominator drawbacks have been incurred).

  37. Morons. by Hagmonk · · Score: 5, Insightful
    By the end of the year, two platforms--J2EE and .Net--will essentially control the programming languages market.

    Oh my god. Moses handing down tablets from on high? A sweeping statement supported by no figures, no examples. Why will they be dominant? Why will they supplant C/C++?

    I would assume that basically all of the Unix market will remain on C/C++/fortran/cobol. Why? Because J2EE and .Net are buzzwords and Unix people have an uncanny nose for sniffing out this kind of crap. And the Unix market is big enough to ensure that your virtual-machine-of-the-month based language "controlling the programming languages market" is always going to be a dream.

    So today's developers will use one of three languages: Java, C# or VB.Net.

    And everyone will shop online, and bookstores will go out of business. I'm sorry Matt, haven't you heard of MY object orientated virtual machine based runtime enterprise kidney beans based language? It's called Bollocks# and I think you will be finding it dominating the programming language market this year.

    Developers switching from C++ to Java concluded that Java was the natural evolution of C++.

    Java is the natural place that people flee to when they can't cope with memory management and pointers. Java is a beautiful language, and the class library is exceptional. But the layers of indirection added through the JVM will always make it slower, and never a language that will replace C++. Just as C++ will never replace C (in the forseeable future), because C++ has its own levels of indirection and safety which slow it down (RTTI, virtual tables, etc). Different tools for different jobs matey, not "one language to rule them all".

    if one were to look at computer science departments across the country, you'd see that Java has replaced C++.

    Java is easier to learn. Hence you can push out more graduates from Compsci courses with it. Unfortunately, you can't apply those guys to say, kernel programming or embedded systems work because they are clueless w.r.t memory management and the guts of the machine. And when speed is paramount, what is a Java programmer going to do? Turn the hotspot flag on and hope for the best? What if it needs to be *reallly* fast, like "we want operation X under Y instructions on the CPU". You're out of luck. Wrong tool for the wrong job.

    Fuck I'm sick of reading this. Another pundit just jabbering off his ideas with only a market analysis background (a poor one at that), not a technical one. I'm sure heaps of IT managers will be reading his column around the world, nodding their heads sagely.

    I haven't even had a coffee yet.

    --
    Ash OS durbatulk, ash OS gimbatul, ash OS thrakatulk, agh burzum-ishi krimpatul! Uzg-MS-ishi amal fauthut burgulli.
    1. Re:Morons. by The+Cat · · Score: 2

      I'm sure heaps of IT managers will be reading his column around the world, nodding their heads sagely.


      As they, without looking, drop 50 lbs. of resumes in the trash.

    2. Re:Morons. by rfsayre · · Score: 2

      What if it needs to be *really fast* and *developed really fast* but the project is huge? You write it in Java and see where the bottlenecks are. Then you take those small portions and write them in the compiled language of your choice.

    3. Re:Morons. by Aapje · · Score: 2

      But the layers of indirection added through the JVM will always make it slower, and never a language that will replace C++. Just as C++ will never replace C

      [sarcasm]And C will never replace assembly. The abstractions are just to slow to write a kernel with. You really need all the speed you can get, that's why all the kernels around today are written in assembly.[/sarcasm]

      Why don't you just replace 'never' with 'it will take longer than people think'. This is almost universally the case with hypes/new technologies, in the short term they fail to achieve the desired traction (and critics put them down), but in the long term they have far greater impact than expected. I have no doubt that garbage collection (gc) will make it into (serious) kernels one day, although no-one will believe me. Ten years ago nobody believed you if you told them that gc would be in a mainstream programming language. As computers get faster and we learn more about how to effectively use technologies like garbage collection, they will be used more and more for low-level programming.

      And when speed is paramount, what is a Java programmer going to do?

      He will follow this list until the problem is fixed:

      1. Find the problem and try to fix the basic algorithm
      2. Buy "Java Performance Tuning" and optimize
      3. Buy a profiler and optimize
      4. Find someone to write the routines in C and call them using JNI

      It seems to me that C programmers have to go through steps 1-3 as well (unless they are born as expert programmers). It appears that Java programmers are worse off since they might get an application with both Java and C code, but I think that this actually an advantage. 95+% of their code will be fairly safe against buffer overflows, memory leaks and can be written quickly. The mean, lean code is neatly seperated and gets a dedicated bad-ass programmer. A coder that knows how to prevent leaks and other problems.

      Compare this to a 100% C program of which 25-50% is written by less experienced programmers. Programmers who leak, let their buffers overflow and write slow C code. In fact, I work at a company that has very good programmers, but their programs still leak a lot of memory. This is a big problem for web applications, it's a bitch to retire instances every few hours. I just hope they migrate to Java soon ;)

      --

      The Drowned and the Saved - Primo Levi
  38. So inexperienced, shouldn't be taken seriously by Seth+Finkelstein · · Score: 2
    Here's just one howler:

    This is because Microsoft introduced the concept of the CLR, or common language runtime.
    Sigh. This is proof that all the hype about "Microsoft innovates" actually does work (in producing people who believe it, not in producing innovation).

    To cite just one example, the author seems never to have heard of the venerable UCSD P-SYSTEM

    Sig: What Happened To The Censorware Project (censorware.org)

  39. well, no by markj02 · · Score: 2
    There are two platforms that are nearly identical: Java and C#/.NET. They are well adapted to industry needs and are likely to take over from the current two industry darlings: C and C++ (with a little bit of VB thrown in). C#/.NET actually even makes provisions for linking in C++ code The move from C/C++ to Java/C# is good. Applications programmers should have done that long ago: languages like C/C++ simply aren't well suited to the uses they are being today--high performance, component based software development.easily.

    Beyond that, little has changed in terms of choice. If you don't want to go with the industry standard, you can still program in Lisp, Smalltalk, SML, Ada, Objective-C, or whatever else you fancy.

  40. What about MI? by richieb · · Score: 2
    The article also makes it seem like MS is advocating C# completely replacing C++, which it is not. C++ is still included in Visual Studio.NET and although MS is pushing C#, it's not going away in the MS toolbox.

    Does C++.NET still support multiple inheritance?

    --
    ...richie - It is a good day to code.
    1. Re:What about MI? by Keith+Russell · · Score: 2
      Does C++.NET still support multiple inheritance?

      You have to be careful when speaking of C++ in VS.NET. You see, there's C++ and Managed C++.

      C++ is C++. As close to ANSI/ISO as Microsoft feels like this week. All the wonderful toys you had in VC++ 6 are here, including multiple inheritance. There's only one catch: As is, you can't write CLR-compliant classes with raw C++.

      For that, you need Managed C++. By designating a class as managed, you tell the compiler that this class is to be managed by the CLR. That means it will be garbage collected. It also means that CLR type compliance must be enforced on your public interface. The class and it's public members must all be, or derive from, CLR types. Templates are strictly verboten, and while you can implement multiple interfaces, you're restricted to single inheritance.

      Note the emphasis on "public interface." If a class is assembly-private, you can use language-specific features to your heart's content. And class-private members of an assembly-public class can still use non-CLR types. For C++, this means, among other things, templates and classes built with multiple inheritance. This is not a big deal for VB.NET or C#, since they're purpose-built for the CLR. This allows libraries from other languages, including C++, to play nice in the same framework.

      This is one of the biggest misconceptions about the .NET Framework. Unfortunately, it appears that the author of this ZDNet puff piece fell for it.

      --
      This sig intentionally left blank.
  41. My god he's right...!!! by linuxrunner · · Score: 2

    I think the editorial dude is right... I mean look at this!
    Return Line:

    Perl - /n

    C - /n

    C++ - /n

    Pascal- /n

    Delphi- /n

    Batch - /n

    My god.... they are all the same!!!!!

    --
    www.slightlycrewed.com - Because aren't we all?
    1. Re:My god he's right...!!! by linuxrunner · · Score: 2

      hehehehe....
      What's really funny about it is that I fscked up on the return line and should be "\n"....

      As you see, I program all so often :P

      --
      www.slightlycrewed.com - Because aren't we all?
  42. Uh. Who was this written for? by Fixer · · Score: 2, Interesting
    And I quoteth:

    Developers switching from C++ to Java concluded that Java was the natural evolution of C++. This was because it offered similar object-oriented capabilities in a safer way, by making use of a runtime much like VB. Most assume that interpreted languages had long ago proven their advantages, elbowing aside compiled languages to a niche in high performance computing.

    In fact, if one were to look at computer science departments across the country, you'd see that Java has replaced C++. So which language is really an evolved C++? The better answer is, simply, that new languages are more revolutionary than evolutionary. If we accept this, then VB.Net starts to make sense as a replacement for VB. However, one has to ask how different VB.Net and C# really are, given that they use the same runtime.

    Interpreted languages pushing aside compiled languages for high performance computing? Uh, no, that doesn't follow, and the reason is that if you need the maximum possible speed and efficiency, you don't want the over-head of an interpreter. In other words, if you can get by with using an interpreted language, it is not high-performance by nature. Only by having the luxury of more-than-adequate system performance can you afford to interpret everything.

    But, on a different tack, why do we care so much about the languages we use? Why are we so stuck on "my-flavor versus your-flavor"? And more importantly, why is there always this huge push to make one language dominant over all fields? Why can't I just use the language that best expresses my ideas? (if starting a new project ;-)

    --
    "Avast! Prepare for the rodgering!" THWACK! "Arrr.. me nards.."
    1. Re:Uh. Who was this written for? by whee · · Score: 2, Interesting

      This article appears to be aimed towards those who use languages because their job requires it. I don't see Java as an evolution of C++, just as I don't see something like Objective-C being an evolution of C. I don't think _we_ care what language we use, but business people do. Most geeks use what's right for the job, whether it be it perl, C, java, or bf. As usual, the people making these decisions are higher up, with no idea of what any of it means. They want to believe that they're supporting the latest technology, and therefore are more capable at doing whatever it is they're attempting to do.

      All this replacing of language A with language B is pointless. In a sense, every single language is the same. They're all either compiled or interpreted into something the computer understands, and we, most likely, don't. The main differences are syntax and semantics; The logic behind everything is largely similar. And this brings us back to the CLR mentioned in the article: is it such a bad thing? Everything eventually boils down to the same sets of instructions, so why not completely seperate language from instruction? The syntax of language A might offer advantages over language B for some task, but the task can still be completed either way. It's just a matter of taste. Only where performance absolutely matters do the choices narrow; Outside of that, what gets chosen is what the developer is comfortable with.

  43. Absurd by Reality+Master+101 · · Score: 2

    Just to close out the whole function language argument that came up the last time .NET and languages came up, here is a link to a paper that was in Dr. Dobbs about a functional language for the .NET platform: http://research.microsoft.com/~emeijer/Papers/Mond rianDDJ.pdf

    --
    Sometimes it's best to just let stupid people be stupid.
  44. Faulty ARgument by Amazing+Quantum+Man · · Score: 2

    Because all languages can be reduced to a Turing Machine, we should all program in UTM.

    --
    Fascism starts when the efficiency of the government becomes more important than the rights of the people.
  45. Not quite so... by pinkpineapple · · Score: 2

    I've been programming for more than a decade using Objective-C, until recently on Yellow box, and not so long ago, switched to GNUSTEP and Cocoa.

    Even if the syntax is very close from C if you want it to be that way, I've never had the feeling of programming with a language that ressembles any other C based languages.
    It's quite powerful, indeed, and gets your projects done in less than anything else I know of, and the environment is just beautiful too.

    PPA, the girl NeXT door.

    --
    -- I feel better now. Thanks for asking.
  46. Historican Revisionism by furiousgeorge · · Score: 2

    >>If this is true, then how did Java get into the >>mix after starting from scratch only five years >>ago? As you may have guessed, many people see >>things a little differently to the way
    >>Microsoft does.

    5 years ago? Strange...... i must have been halucinating when i was running Sun's HotJava web browser on my Sparc10 back in '94.

    And before it was branded 'java' it existed as 'oak'.

    Not to slag Sun since i think java is pretty sweet, but you'd think in the EIGHT damn years since it first came out they'd have sorted out some of these same platform incompatibilies that plague java developers. "Write once - debug EVERYWHERE".

    Well, at least they admitted AWT was a piece of shite and moved on to Swing (which is nice, but a reasource hog).

  47. C++ is not dead... by SoftwareJedi · · Score: 2, Insightful

    Becuase in some cases it is just barely coming alive. If you look at the source code for most of the Open Source Projects you can see that a vast majority of them are still written in C. C++ still does not have as much of an installed base as C.

    Predictions that the .NET technology is going to knock off a language base over night is just plain false when one considers just how many technologies are all ready implemented in that langauge and how important it is that those technologies be maintained.

    It is more likely that .NET will be a short lived fad than the likelyhood that an established technology will just disapear in the night.

  48. building the future by brlewis · · Score: 5, Insightful

    Given that Perl imitates Lisp and Scheme more closely with each release, that GC made it into the mainstream with Java, and that Python eventually got lexical scoping, maybe you should revisit your idea about whether what they teach in school is what will build the future.

  49. Re:What are YOU smoking by Havokmon · · Score: 5, Insightful
    The author obviously is not in the right industry if he thinks developers only will program in VB.NET, C# or Java.

    Interesting perspective..

    What I got out of the article was:
    Because of CLR, most languages for a common runtime will end up having the same abilities, just different syntaxes.
    So, if you know VB.Net, you'll be as 'powerful' a developer as someone who knows C#. But then your C# is probably watered down also.

    I think he's saying CLR has it's advantages, BUT keep in mind you may be sacraficing a better tool for the current job.

    Kinda like Java.. choose interpreted platform interoperability over compiled speed.

    I saw/remember nothing about "All other languages will die.." What would I do with my REXX knowledge? :)

    --
    "I can't give you a brain, so I'll give you a diploma" - The Great Oz (blatently stolen sig)
  50. Re:Is MS *really* .NET only ? by Amazing+Quantum+Man · · Score: 2

    Does VC.NET correct the fact that using an exception specification generates a C4290 warning (Exception specification not supported)?

    If not, then I'd say that the C++ engine in VS.NET has a hell of a long way yet to go.

    --
    Fascism starts when the efficiency of the government becomes more important than the rights of the people.
  51. Turing Completeness and Virtual Machines by Baldrson · · Score: 4, Insightful
    People forget that a machine/language that is Turing Complete can emulate any other machine/language that is Turing Complete.

    The most widely deployed Turing Complete machine/language is a close race beteween Javascript and the Wintel machine code, with Java a distant 3rd. Since there is a problem with reliance on machine code for dynamic installation of software over the network, that leaves Javascript the most obvious candidate in which to write other languages. Most people never thought of Javascript as anything but an afterthought to HTML so they might have their eyes opened a bit to the power of Turing Completeness by seeing the TIBET virtual machine written in about a 100K Javascript embeded in a web site's (gzipped) HTML. It gets away with this by dynamically patching (Perl-config style) Javascript incompatibilities and building out from the set of features thereby supported cross-browser.

    As I've written elsewhere, this isn't the ultimate language by any means -- but it is a critically needed repair to the foundation of the web that can be followed by more advanced VM's later on.

    1. Re:Turing Completeness and Virtual Machines by Baldrson · · Score: 2
      I guess you're confused by the example of method inferencing they gave:

      "123.45".round();

      The point to remember here is that method look up happens as it usually does. If that succeeds, then no method inferencing occurrs. It's just a normal multiple inheritance method lookup system.

      Where things get inferential is if the system can't find an implementation via inheritance. Then, and only then, does it go inferential. When it goes inferential it looks around the system for a type:

      1. to which it can convert the instance via "as" and/or "from" methods
      2. that has an implementation of the "round" method
      If it finds such a method, it:

      1. strings together the appropriate "as" and/or "from" methods
      2. runs the original instance through those conversions and
      3. invokes the "round" method from the "round"-capable type
      The fact that it encaches the method chain and invocation for you is gravy on top of inferencing just as inferencing is gravy on top of normal multiple inheritance.
  52. Re:Programming in the US Military by Amazing+Quantum+Man · · Score: 2

    What happened to Ada(r)?

    As a former employee of a DoD contractor, I remember (with great pain) the Ada mandate.

    --
    Fascism starts when the efficiency of the government becomes more important than the rights of the people.
  53. Re:What are YOU smoking by Rupert · · Score: 2

    *Only* C# can access the whole feature set of the CLR. Other languages get close to varying degrees. So the C# developer reigns supreme in the .NET universe.

    --

    --
    E_NOSIG
  54. The REAL problem with developing... by gergi · · Score: 3, Interesting

    ... is being an engineer who's boss will read this article and take it as The Truth.

    --
    Nosce te Ipsum
  55. Re:Programming in the US Military by cyberlync · · Score: 3, Insightful

    Why the pain? Ada is great language that has matured quite allot in the last 10 years or so, especially with the update in 1995. I cant say the Ada mandate was a good thing for the langauge, but the language itself is very nice. I think the main problem that people have with it is its pascal like syntax and the fact that it imposes allot of discipline. Programmers generally dont like any discipline much less externally imposed by the language. However, that does not negate Ada's benifits as a programming enviroment and it shouldnt be dismissed out of hand.

    --
    I'm a programmer, I don't have to spell correctly; I just have to spell consistently
  56. Missing a demographic by Joel+Ironstone · · Score: 2, Interesting

    I suppose the key advantage of microsoft's new langauges is their accessibility. They make programming easy and allow just about everyone and their pet monkey to make interactive web-based services. The problem with the article is that it refers to the majority of programmers and not the majority of programming. I'm sure 5x as many people are employed using these langauges, but I truly believe they are doing 5x less programming from a difficulty standpoint. The difficult applications (signal processing, computer graphics and games, server and embedded systems, AI, whatever) are all developed using C, assembler, or some other more empowering language. I think we need to develop a distinction between end-user net-service based programmers and true developers. Something like the distinction between a carpenter and my sister who assembles furniture from ikea. I apologize to everyone I have offended. But all the hard stuff is still done with langauges that I respect.

    1. Re:Missing a demographic by Joel+Ironstone · · Score: 2, Interesting

      A good C or Assembler programmer can always move up and figure out what to do with a new language. I am not convinced VB.NET designers will have the same veratility. There is no need to understand how a machine works, and without that knowledge one can, and often does, miss something.

  57. Re:Programming in the US Military by kryonD · · Score: 2, Informative

    It was the "Great Pain" part that killed it. I too suffered through a few classes on that language and it simply boiled down to supply vs demand. The civilian sector saw no reason to learn Ada since other languages could accomplish the same functionality. As the era of Reaganomics went away and the infinite supply of government money for hiring contractors died, the contractors were forced to cater to customers other than DOD to stay alive. Everyone else was looking for C/C++ or Java (mid 90's) and so that's where the talent and training went. The DOD finally had to accept the fact that there weren't enough Ada supporting contractors left to support the language as a standard, so they instead moved to the "Commercial Off The Shelf" COTS line of thinking. Fortunately the contracting industry had basically settled on C/C++ as the language of choice, so we didn't have the myriad of languages you did back in the 80's.

    I think a few DOD offices still try to push for Ada, but most have accepted defeat. All the new systems coming online in the USMC logistics community are now written in ANSI C.

    --
    I've dirtied my hands writing poetry, for the sake of seduction; that is, for the sake of a useful cause. --Dostoevsky
  58. Time for the next step in software development! by 3seas · · Score: 2


    Autocoding project proposal

    If you cannot tell the difference between a three deminsional data array or 3D computer graphic from
    3 dimensional Reality, then the Matrix has you. If you are confused about the three deminsions of length,
    width and height, then the matrix has you and you don't know it.

    But seriously, see the code for what it is, super-impose the nine action constants upon what you do in
    coding to find the control points for automating.

    As an example of these nine action constants, everybody uses them all when
    comming to slashdot, reading and posting comments.

    It's physics!

    Lets see now:

    Switch (AI - alternate/activate interface) - start and stop, change
    interfaces - Uh, start up Web Browser and connect. Go to slashdot,
    newsarticle, thread....

    Apoc (PK - Place Keeper) - keep track of where you are - Pick up where
    you left off on the thread..

    Tank (OI - Obtain Input - Output to-> Input) - get input - read with eyes.

    Mouse (IP - InPut set) - input from - internet and monitor

    Dozer (OP - OutPut set) - push output to - via keyboard/mouse to
    Slashdot comment posting

    Neo (SF - Sequence stufF) - one step at a time - damn this non-polyphonic
    qwerty keyboard and mouse...

    Morpheus (IQ - Intelligence Quotient) - what's the meaning of the post
    I'm reading, what the meaning I want to respond with - within the
    (KE'd) constraints of ....

    Trinity (ID - IDentify) - identify posters and forum - hey there is one
    by ____ in ____ forum, now I know to be (KE'd) constrained as to
    how I respond.

    Cypher (KE - Knowledge Enable)- constraints to apply to Morpheus (IQ)
    meanings and Trinity (ID) poster named _____ and _____ article.

  59. WHY: The article is simplistic... by JohnDenver · · Score: 2

    My conclusion: The author is trying to reach a broad number of readers, many who aren't familiar with .NET, the CLR, Java and how thier programming paradigms are almost virtually identical. (I've mentioned it before, .NET is a Java rip off)

    As far as his claim is concerned, "Java and .NET being the only 3 choices in the future." I guess he figured that C is going to go way of assembler as virtual machines begin to outperform C code with super optimized JIT code.

    In light of all this, the author has concluded that any modern language will be a Java clone only varying slightly in basic expression syntax.

    Futher, he seems to suggest that Java and .NET are only capable of supporting the language paradigm that Java and .NET share.

    THIS ISN'T TRUE...

    People have already implemented a number of alternative languages for the Java platform including Lisp, Python, and god knows what else.... The same for .NET...

    THIS DOESN'T MEAN THERE ARE NO ISSUES

    The big issue with JavaLisp, JavaPython, and JavaBasic is how to get them to interoperate. Microsoft provides the interoperation with .NET's CLR. I suspect that Sun is probably working on an Interoperation method somewhere...

    In conclusion: He's wrong and he's right...

    --
    "Communism is like having one [local] phone company " - Lenny Bruce
  60. Needs qualification ... a lot by outlawstar · · Score: 2, Insightful
    The article applies only to a very limited group of programmers. Even Fortran is still heavily used in scientific computing, LISP and Prolog in artificial intelligence, and of course, assembly, C and C++ for system-level programming.

    I disagree slightly that Java was the logical evolution of C++, because it lost something that the creators of C++ tried very hard to maintain when they "upgraded" C: efficiency. Java, whatever the excuses, is not very efficient, and most developers know it. This is NOT to say C# is much better, but it does leave us wondering why Java, which had such a big head-start on MS, could not have done a better job with the architecture of Java.

  61. Re:Languages by RevAaron · · Score: 2
    B) Java and C# are not the logical successors to C/C++. They're more like a smalltalk with a C-syntax and some trade-offs for efficiency. In terms of providing system calls and API's that are cross-platform... Well, even more like smalltalk!!

    Not really. If anything, Java and C# are logical steps backward, but they certainly aren't successors. Neither of them have anywhere near the level of dynamic runtime, reflexion, meta-programming, or general flexibility that Smalltalk has.

    It makes many good points about how cs is more the same than different now as compare to 10, 15 even 20 years ago!

    It really hasn't progressed. No language, other than things like multiple inheritance (which was tried in Smalltalk, but ditched) and sugared syntax, really has features that surpass something like Smalltalk-80, a language standardized in 1980. Even then, the research was done in the years previous to 1980. It's kind of sad, really. I watched the Alan Kay lecture tape "Doing with Images make Symbols" again last weekend, and it really illustrates this point; between the Smalltalk group at Xerox PARC, Doug Englebert, and the Flex visual programming language, we've not had any real advances, other than making things cheaper, smaller, and crappier. By crappier, I mean taking Smalltalk and Lisp, and perverting them into the hacks known as C++, C#, and Java.

    --

    Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
  62. that's what I said .. by josepha48 · · Score: 2
    .. on my web site.. that all languages are essentially the same. Yes there are slight differences, but they all have if, then, else, for / next, while / do, records/structures, and many other features that are similar. Once you have learned one languages you can move to just about any other programming language and then it becomes a matter of what do you like most about language X, Y or Z. Basically it comes down to pick your poison and it has its plusses and minuses. You want feature foo, its in language X, but it also has feature bar which you probably don't want.

    IMHO the ideal language would have the following: objects/classes, inheritance, polymorphism, private data, public data, NO MEMORY allocation or automatic like perl/Java and a good clean garbage collector (like perl), i.e this leaves out C/C++ as both require either you write a garbage collector or you do the alloc/free. Compiled to executable code, with a fast easy to use GUI IDE for graphics, cross platform capability with NO "if window do this else if mac do that etc. (Java is not compiled to native exe). Also it needs the standard for/next, switch/case, while/do, etc. Visual basic comes close but it is not cross platform compatible. Lastly it needs to be fast. What language do you know of that fits this? Oh and there is more......

    --

    Only 'flamers' flame!

    1. Re:that's what I said .. by jacobm · · Score: 2

      " ... but they all have if, then, else, for / next, while / do, records/structures, and many other features that are similar ... "

      No. Every mainstream language, maybe, but not all languages by a longshot.

      --
      -jacob
    2. Re:that's what I said .. by josepha48 · · Score: 2

      Yes I am primarily talking mainstream languages. Java, C, Perl, php, python, C++, JavaScript, ASP/VB, scheme, and shell programming. Outside of assembly what language does not fit this build?

      --

      Only 'flamers' flame!

    3. Re:that's what I said .. by jacobm · · Score: 2

      Scheme doesn't have for / next, while / do, or records/structures in its standard (though records are implemented in every useable implementation). Besides, high-power Lisp programming is all about macros, which don't even exist in any serious way in any other language (C macros are a joke in comparison; read On Lisp by Paul Graham for good reasons why). Your usual functional programming suspects -- Haskell, ML, etc -- as well as hard-core OO languages eschew most uses of the control operators you list in general.

      --
      -jacob
    4. Re:that's what I said .. by josepha48 · · Score: 2
      scheme does not call them for/next and while/do, it calls them "loop". The principal of looping in scheme is still present just under another name. Assembly also has loops, I believe they are called jumps. I think any language that did not have some way of looping would be pretty worthless. Any programmer knows that there are often times when data needs to be iterated through.

      As far as records / structures. I find that hard to believe that there is no way to declare a record in scheme. Even pascal and basic can do records. A C/C++ structure is very similar to a record. Heck even vax Basic has records.

      I don't do to many C macros cause they are joke.

      The point I was trying to make is that no one language has encompased the best of all the languages with a easy to use gui as well.

      --

      Only 'flamers' flame!

    5. Re:that's what I said .. by jacobm · · Score: 2

      Scheme does not have any construct called "loop" defined in the standard, nor do any implementations I know of define one. R5RS (the scheme standard) does specify that scheme implementations should define in their standard libraries (!) two iteration constructs, one called "do" and the other a variant of "let" (in practice often called "let loop," which might be what you're thinking of). The standard explicitly says that these should be in the library, not primitive Scheme syntax. In practice, neither iteration construct is used all that often by experienced Schemers (I've been programming in Scheme for 5 years and I actually didn't know about the "do" macro until I looked it up just now).

      So you might be wondering: How the heck do experienced Schemers loop over things if they don't use those loop constructs? And anyway, how are they implemented in the library if there are no more primitive loop constructs around?

      The answer is recursion -- functions that call themselves. Scheme is all about recursion; the specification even forces implementations to make certain efficiency guarantees about it so that Schemers can recur to their hearts' content without incurring runtime penalties over looping. For instance, in C, you'd probably count the size of a list like so:


      int list_size(List* l) {
      int count = 0;
      while (l != NULL) {
      count++;
      l = l->next;
      }
      return count;
      }


      In scheme, you could define it the same way:

      (define (list-count lst)
      (let ((count 0))
      (let loop ((r lst))
      (if (null? lst)
      count
      (begin
      (set! count (add1 count))
      (loop (cdr r)))))))


      ... but that would be awful scheme. More advanced schemers would write

      (define (list-count lst)
      (cond
      ((null? lst) 0)
      (else (add1 (list-count (cdr lst))))))


      or even:

      (define (list-count lst) (foldr add1 0 lst))

      So, you might be thinking: 'That's nice. So it's just a funny way of saying "for" that I don't understand very well and doesn't seem to have any advantages.' A lot of people have that impression and get turned off to Scheme because of it. But it's not true: for one thing, see how much prettier my second Scheme definition is than my first? It's more compact, and once you get used to it, easier to write, read, and debug. Furthermore, it's more directly applicable to many programming situations, particularly when they involve complex data. Read all about it in How to Design Programs , an excellent introductory textbook on Scheme and programming.

      And nope, the Scheme standard defines no record or structure type. Look through the standard yourself, you won't find it there. This is in fact pretty frustrating to the Scheme community.

      As for assembly, first of all, remember that every processor has its own assembly language and they're not all the same. That said, jump is not the same as a loop. Jump means "go straight to some other point in my program and keep going," which is more general than loop (but can be used to implement loop).

      --
      -jacob
    6. Re:that's what I said .. by josepha48 · · Score: 2
      Hmm hen scheme is NOT a language that I'd choose to use if it does not define some type of record or structure, and neither is asm. I knew that they had a 'looping' construct, and had seen it as loop or let loop yes. I had also heard of the do to.

      I'm glad you like scheme, and know so much. not having records or something like that to me would make it a more primitive language than C or even pascal. If you read my initial post one of the requirements of my ideal language would include this construct. Since you have pointed out neither asm or scheme include these constructs then these are not going to be languages that I am going to move to.

      If I knew more about asemblers and creating new programming languages I'd write my own. I am considering working on the design of one though.

      --

      Only 'flamers' flame!

    7. Re:that's what I said .. by jacobm · · Score: 2

      Well, the scheme standard doesn't define a record type. Every usable Scheme implementation extends the standard with one, and they can in fact be defined with library functions in standard Scheme (based around vectors or lists, which are provided by the standard). But it does make scheme code less portable than it ought to be, because you're right, everybody wants to use structures for things.

      As for designing programming languages, I encourage you to design one for yourself. There are books on the subject -- you might want to see if you can find a library that has a copy of Essentials of Programming Languages, it'll introduce you to a lot of the decisions you'll need to make as well as giving you ideas for how to implement whatever you decide to do.

      --
      -jacob
  63. Re:Languages by SimonK · · Score: 2

    Regarding A: The JVM and CLR are at a higher level of abstraction that assembler. As such, they limit the range of languages that can be implemented more than assembler. This is more true of the JVM than the CLR, but both of them include high level object-manipulation instructions that you don't get in most assemblers that make them more suitable for some kinds of languages than others. Notably, garbage collected, statically types, single dispatch, single inheritance languages like C# and Java work better than most others.

  64. Re:What are YOU smoking by ethereal · · Score: 2, Insightful

    Well, until you write a different "dialect" of your language, like using Eiffel# instead of Eiffel - which is not really an improvement and not the vast world-changing development improvement that Microsoft said it would be.

    I wish I could find the previous /. or k5 story that had a link to this article, but basically someone did the math and discovered that the CLR only really supports certain kinds of language characteristics, and so eventually to use the full power of it you have to use a language that is essentially C# with different tokens. C# is the "common denominator", and other languages will need a C# compatibility layer of varying complexities, depending on their similarity to the concepts that make up C#.

    --

    Your right to not believe: Americans United for Separation of Church and

  65. The real problem with languages today by iPaul · · Score: 2, Insightful

    The real problem with languages today are that they aren't created to solve a problem, they're created to make money. Languages used to be developed to make systems programming easier than doing it in assembler (C), or make logic programming easier for first order predicates (Prolog). VB.Net and Java are there to make money for their creators (Sun and Microsoft). They have a kitchen sink attitude with features and are targetted at applications developers with sometimes no formal training in Math or CS. They're not efficient, different or revolutionary. They're designed for what Sun and Microsoft think the IT market wants.

    --
    Leave the gun, take the cannoli -- Clemenza, The Godfather
  66. methinks you misread that by Preposterous+Coward · · Score: 3, Informative
    probably because it was shabbily written and edited... but what he's trying to say is that intrepreted languages had proven their advantage in most (ie, non-high-performance) apps, leaving just one niche (high-performance apps) for compiled languages.

    Whether this claim has any merit or not is left as an exercise to the reader.

    --

    "Biped! Good cranial development. Evidently considerable human ancestry."
  67. Obligatory Python post ;) by LM741N · · Score: 2

    What about Python?
    Python is not "like" any other language- it is an amalgamation of the best features of many languages.
    I program in Python because the language does not get in my way- of doing things. Later its easy to port Python apps to C, Fortran, whatever. The opposite route is pure hell.

  68. Diversity by gnovos · · Score: 5, Funny

    Replacing a position because some guy back in '83 decided to use the odd-ball programming language : $120k

    Maintaining 17 different operating system at once : $225k

    Answering calls from 200 end users with slightly different desktops : $57k

    Having your entire network, the networks of all your end users, and your entire array of backup systems turned into incomprehensible mush overnight due to an advanced virus that could easily target and replicate in your undiversified computer systems : Priceless

    --
    "Your superior intellect is no match for our puny weapons!"
    1. Re:Diversity by crgrace · · Score: 2

      (Btw, I am not suggesting that Windows is the very platform that should be standardized on. How many widespread virus out there have had that effect on Solaris?}

      Ever heard of rtm? Brought our SunOS network to its knees about 10 years ago.

  69. Re:Programming in the US Military by Amazing+Quantum+Man · · Score: 5, Funny

    Oh, I agree. Ada95 is much better than Ada83.

    --
    Fascism starts when the efficiency of the government becomes more important than the rights of the people.
  70. Two Things by SimonK · · Score: 2

    I largely agree with you about Smalltalk. I often rant in a similar veign myself. I just want to present some things that have given Java (at least) something of an advantage:

    1. Memory usage. I know its somewhat spurious, but things like VisualWorks could get really huge. Squeak is better, and of course computers have largely caught up, but Java's one-application-per-process approach and dynamic class loading has arguably been more practical than the Smalltalk wopping great image file approach.

    2. Dynamic compilation. OK, it was invented for Self, which is arguably even neater than Smalltalk, but its finally found widespread use with Hotspot.

    3. Static typing. I'm unconvinced myelf, but a lot of people are very suspicious of dynamically typed languages, probably because they're confusing dynamically typed with weakly typed. However, it does help with static analysis - although of course 99% of Java environments don't do this.

    1. Re:Two Things by RevAaron · · Score: 2

      Having .class or .so files is very much so more practical for most people's situations. A monolithic Smalltalk image doesn't bother me, but I am used to Smalltalk. For a person coming from magical-60s land, where everyone lives in the past and still uses files, the way Smalltalk does this is pretty foreign.

      Yes, indeed, Self is/was quite the awesome project. It's a shame it had to turn into Java, rather than being in the position where Java is today.

      --

      Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
  71. My beloved Fortran! by TheMatt · · Score: 2

    Where is it?

    You know, real programmers code their apps in Fortran 95. Well, I suppose real programmers program in 66, or FORTRAN IV or something, but I'm young and I don't take to Hollerith. Fortran!

    --

    Fortran programmer...oh yeah. Array math for life!

  72. Ignorance by SimonK · · Score: 2

    There are huge numbers of major Java projects. You just haven't seem them because they are used internally by large corporations in "invisible" roles. Absence of evidence is not evidence of absence. I happen to have lots of evidence of presence.

  73. WTF ? by SimonK · · Score: 2

    You could explain to anyone with a modicum of intelligence how C's pointers differ from object references in Java in about 10 minutes. Anyone with a CS degree will know about the memory model of computers well enough to understand.

    I don't know what planet you live on, but on mine "top coding jobs" rarely hire people on the basis on knowledge of awkward features of aging programming languages.

    1. Re:WTF ? by rufusdufus · · Score: 2

      Sadly, your first statement is apparently not so.

      My planet is a major software producer known as "Microsoft". Yours?

  74. 25 years from now... by cperciva · · Score: 2

    I don't know what language we're going to be using 25 years from now, but it's going to be called FORTRAN.

    (sorry, someone had to say it.)

  75. Problem with programming languages today by Steveftoth · · Score: 2

    Is that they really don't improve programmer efficiency over the languages made yesterday.
    Java is not much better then C, C# and Java are very much the same. VB, well VB doesn't make it easier to program. All these languages suffer from the same problems.
    It's still very easy too.
    Write unmaintainable code.
    Write APIs that make no sence.
    Write insecure code.
    Write code that nobody else can use.

    And too hard to write code that is..
    backwards compatable
    self-documenting
    easy to read
    self organizing

    Without good programmers it doesn't matter which language you are using, as all of them suffer from the same faults. Where are the totaly visual languages, LabView anyone? Not as good as it could be, but it's a start.
    Why are all new languages text-based? None use color (does color fourth count?). Python uses whitespace as a way to imply function (a good thing). With 17" COLOR monitors being the minimum that a new or year old computer has as it's display you would think that us developers could devise a language that allows us to express to ourselves as well as it expresses to the computer.

    1. Re:Problem with programming languages today by Steveftoth · · Score: 2

      yeah, but I think that it would be faster if instead of highlighting words on the screen , it actually made it part of the language.
      Like instead of using brackets to represent a scope block, it would instead be a green rectangle. and anything in the rectangle would be in scope.

  76. Managed vs Unmanaged C++ by SimonK · · Score: 2

    You can write unmanaged C++ and target the CLR, in the sense that the compiler will generated CIL, and a CLR-compliant execution environment will be able to run it. What you cannot do is have the CLR understand your C++ classes and objects as classes and objects, because the CTS object systems only supports single implementation inheritance, uses a garbage collector and so on. To shoehorn C++ classes into the CTS object model you have to use managed C++ (which is really gross lookinng).

    In order to interoperate with other CLR languages you need to comply with the CLS as well. This limits the use of various things. I think it is at this level that you lose templates.

  77. Object orientated or sequential is the key issue. by Saggi · · Score: 2, Insightful

    Someone who doesn't know much about the deep technical levels of programming has been writing this article or he is attempting to aim the article at a non-technical audience.

    First many will note the lack of many common programming languages. As an example, have I seen quite huge programs made in Perl.

    In my experience (by now I know more than 15 programming languages and shift between them depending on assignment or task) I have only found two major categories of programming languages. Sequential (C, Perl etc...) and Object orientated (Java, C++ etc...). When you know 2-3 languages in each of these categories it becomes more a question about knowing the syntax and knowledge of the language supporting procedures (or libraries if you prefer).

    Today the OO languages become more and more commonly accepted as best practice. I believe that's why Microsoft goes the OO way with their .NET initiative. The rest moves toward Java. In the company I work we have productions on both platforms. We don't have the focus on the name of the language anymore. For us its much more important to make the correct architectural design of the system as a whole, and this require skills in IT architecture (especially OOA). In that sense I agree with the article, when it says the choice of language is not the key issue.

    Some of the solutions I have been involved in I have found some algorithms to be more effective to optimise when using a sequential language. Especially when you have to work on long arrays of data or the amount of objects that interfere with each other increase dramatically. (I have seen this in some chemistry and physical models.) It is therefore not easy to conclude anything in general, but choices have to be made case-by-case.

    Other things to consider are the computer on a hardware level. A CPU typically runs programs sequential order. Those working with assembler know this. (Of cause some may be working with parallel computing and multi processors, but that's an entire story of its own...)

    --
    -:) Oh no - not again.
    www.rednebula.com
  78. Re:Diversity in the Help Wanteds is Declining by iPaul · · Score: 2, Insightful

    Unfotunately these adds aren't written by rocket scientists. Someone in HR writes up an add and runs it by a manager in IT. The manager says, Java's good, SQL is good, .Net is good (manager doesn't really know what it is but it's on the cover of Infoweek), and probably should have some Windows, Solaris, Unix, VB. So, the final add comes out "Java, SQL, Oracle, VB.Net, .Net, Windows, Solaris, Unix, VB". What they actually needed was a guy to install Windows, install Office, write some VBA, and handle their exchange server.

    --
    Leave the gun, take the cannoli -- Clemenza, The Godfather
  79. Java - Write Only by DrCode · · Score: 2

    Good analysis. I find writing in Java to be a very pleasant experience. But when I'm searching for a utility on Freshmeat, the Java programs don't get even a glance. I'll always prefer programs that are faster and smaller to those that are slow and bloated.

  80. If this guy is right THANK GOD! by volcanic_god · · Score: 2, Interesting

    Hell, I am tired of arguing over what language to use to do simple applications, and most applications are pretty simple. Don't believe me? Then consider the poliferation of applications that are written in VB.

    I take the "if it feels good do it" approach to programming. If you like the language and feel productive with it, then, hell, use it.

    I like writting apps that do things, not learning new languages or arguing what language it better.

  81. Over Simplifying by arn@lesto · · Score: 2, Interesting

    The author has over simplified multiple things in his article. Every simplification has enabled him to claim things that on the surface seem reasonable but in practice are false. To further increase the noise he has a lot of his 'facts' and 'assumptions' incorrect.

    1) "J2EE and .Net--will essentially control the programming languages market"

    How does he define the programming languages market? There are more people employed writing "vertical applications". Their choice of language and libraries is typically dictated by legacy: fortran, cobol, lisp, C, pascal, etc. What about embedded systems: assembly language, C, C++, Forth. High performance computing using vectors and parallel algorithms have a whole set of specialized languages.

    2) "Still, it is an amazing achievement to be able to support different languages on the same runtime, right? I certainly think it is, but others would disagree."

    Where has this guy been? By the early 1980s there were compilers for Pascal, C and Fortran that compiled to P-code (a common runtime) and were either compiled to native machine code or ran in an interpreter. Not a new concept. It is just that people are ready to accept the cost today.

    3) discussion of what is the natural descendant of C++.

    Who really cares? Once you've chosen a language to write in, it doesn't matter how it came to be. It supports a set of programming constructs and has a number of libraries available for use (that may support the type of program you are writing). The evolution of the language is completely irrelevant.

    Language designers are very aware of other languages (more so than Liotta) and will borrow/steal ideas and syntax that they like. The language is designed with a particular purpose in mind. There are literally hundreds of domain specific languages that work better than C#, Java, VB for their intended task. They may be similar to another language, or use similar constructs but they are not the same.

    4) "With .Net, there is only a single runtime (functionality), but different language syntaxes (look and feel) can make use of it."

    There has always been a single runtime, the machine code. It hasn't prevented languages from having different semantics from one another. .Net and JVM won't prevent it either. The syntax of a language is almost accidental from the point of view of the language designer.

    I could keep going but I'm also over simplifying so I'll stop.

    --
    - AndrewN
  82. What about K? by Jayson · · Score: 4, Interesting
    I agree that most language are the same C derived POS. C was different and inventive when it was created. Lisp, APL, Prolog, and Smalltalk were all different when they were created. It seems like as time went on we started narrowing our field of vision and implementing the same languages: C to C++ to Java, what kind of intereting steps are those? At least Smalltalk to Self was a very interesting pushing of the boundries. Today, almost nobody pushes anything, except how similar their langauge is to C and why that it good. Even Python and Perl don't attempt to explore any new concepts, they are happy being a Frankenstein of older languages that people seemed to have forgetten about; name three new features of either language, just try to name one!

    My sole exception to this is a language called K. Yes, it has its roots in APL and has added to the APL model from languages such as Lisp and Scheme, but it has some very interesting new features of its own.

    K is very very very fast to write and the run. It blazes in both categories. There is a full relational database that is written in K, called KDB. It crushed Oracle on the TPC-B and TPC-D benchmarks in both speed and storage size, requiring only a few percent above the dataset size in overhead. It has native clustering and replication that allowed it to run on a 50 cpu Linux cluster loaded with 2.5 billion stock trades and quotes and have simple table scans (such as, select max price from trade) take under a second and multi-dimensional aggregations (such as, 100 first desc select sum size*price by sym from trade) take only 10 seconds. Starting the database cluster took a tenth of a second. It is SQL92 compliant, has an extended ultra-powerful query language called KSQL that makes writing queries very simple, and the stored procedure languages are K and C.

    In bwk's language benchmarks, even though this is not the K strong point, the sum of the execution times were: K at 32 seconds, Perl at 95, Java at 300, and TCL above 1400. The lines of code to implement were: K at 9 lines, awk at 95, Perl at 96, TCL at 105, Scheme at 170, VB at 200, and Java at 350.

    Yes, K can look like line noise, but unlike Perl, you get alot from this. First you get extreme code density and see the entire problem on the screen at once. I came from a Scheme background and Perl hurt my eyes, so I was very skeptical, but after my roommate persuaded me to look at K harder, I realized that this high code density made it very easy debug and write code. It is rumored that KDB is written in 26 files of code, each file consisting of a single screen of code, labeled a to z. Try doing that in any other language. The language is exceptionally regular. It is so logical and consistent that it takes a little getting used to. You never have to remember any baroque language rules. Anything that makes sense, you can do. Also, even though it looks difficult, it is extremely easy to learn because K is directly translatable to English, in fact there is a K program that will do this automatically. For example to split a line by tabs you could write:
    cut:{1_'(&x=*x)_ x:"\t",x}
    And this is read:
    cut gets function, 1 drop each, where x equals first x quantity, cut x. When X gets tab join x.
    It may take a little getting used to, but with a month of K, my roommate and I were able to converse this way when describing K and you could see the picture developing in your head. It was amazing.

    A unique feature of K is what is called the K tree. Unification is a very strong idea in K, so it unifies the idea of object, variables, attributes, namespaces, and dictionaries. A dictionary is a native K type. Each variable lives in a dictionary (somwhat like Python). These dictionaries are joined hierarchically and can be removed and added dynamically. All variables are on the K tree, too, so a new namespace is really just a dictionary on the K tree! This means that you can rearrange the K tree and change what functions get called. This is the most reflective language that I have ever seen (Python, Scheme, and CLisp come in a very close behind). All variables have attributes. All attributes are is a special dictionary attached to the variables (the language is so regular that this is really a namespace with a blank name so to refer to the attributes of a variable you say ns.var..attrib). And, of course, each attribute is just a variable so each of those can have attributes, too.

    This interesting K tree leads to a very elegant GUI. Each variable can have an attribute named c (for class), and this can have certain values like `table, `check, `radio, `button, and others (the backtick ` is how you make a symbol). Lets take radio for an example. Then you would have another attribute o (for option) with possible values:
    r..o:`zero`one`two`three`four
    r:r..o[1]
    r..c:`radio
    `show$`r
    These four lines would create a radio box with five choices, zero through four, and everytime you evaluated r whatever the radio was set to, r would evaluate to. Basically, each variable has a direct on-screen representation (they default to `data) and is directly manipulable.

    K also has the ideas of dependencies and triggers in the language, so if a..d:"1+b" then refering to a will dynamically calculate 1+b, but only when necessary (if you refer to a multiple times but b does not change between those references, a will only be calculated once and stored; K figures out the dependency graph for you). There are also triggers. If b..t:"a:b-1" then whenever b is assigned or modified then a will get the appropriate value. This trigger can be anything, such as a network operation or a gui command.

    The language has some other unique features like an interesting callback oriented interprocess communication system and an on-the-fly optimizing vm.

    Of course since it inherits some background from APL it has bulk operators, called adverbs, that modify functions in every conceivable way (much more powerful than APL or Perl). One of the signs of a good K programmer is one who knows how to do this and doesn't use any loops (KDB, the relational database, is written without any loops).

    From functional languages K inherits higher-level functions and projections. Both which are very standard practices especially when combined with the bulk operators. b f[a;;c;]'d takes the four argument function f, fixes the first and third arguments projecting a function of two arguments, then applies it to each down the list of argument in b and d.

    When you use K you truly are standing on the shoulders of giants. The person who wrote it, Arthur Whitney, has this amazing ability to identify the important pieces of a problem and simplify away the rest. The performance in K and KDB is incredibly; the simplicity and power of the language and the database is incredibly.

    K runs on various flavors of Unix and NT, so people should take an open mind (I didn't have one at first and was very skeptical) and really try the language and try a new style of programming. Your code and thoughts on developing will never be the same.

    -j
  83. Comment removed by account_deleted · · Score: 2

    Comment removed based on user account deletion

  84. Re:market domination by Tattva · · Score: 2
    Languages are around forever because they are easy to support when they're dead, i.e. they stop evolving in a significant way.

    Live languages change, ideally the best parts stay and the worst parts are deprecated.

    Old languages stick around, and occasional releases are defecated. You can support crap as long as you don't play with it, and if you put crap in a seive don't expect to be left with the best parts.

    --
    personal attacks hurt, especially when deserved
  85. Re:Programming in the US Military by aebrain · · Score: 2, Insightful

    Ada is almost dead in the military. Why? Because there isn't enough money in maintaining Ada programs. They work, first time. Great for the military, lousy for the military-industrialist complex. Spend twice as much making it in the first place, then get no lucrative bugfix money afterwards. Making expensive programs that actually work is commercial suicide. Making cheap programs that actually work (which you do after some experience) gives you only subsistance level profits. Making cheap programs that almost work and require lots of profitable maintainance for years is the road to riches. So what if a few ships need towing to port due to a divide-by-zero error?

    Of course, where firms could get sued if they screw up, such as in commercial avionics and jet engines, Ada is universally used. Ada doesn't guarantee good, safe, maintainable programs, but it's relatively easy to make them in Ada, and darn near impossible to make them in C.

    As for Ada being harder to learn than C, which is harder :

    for(i=0;i<BUFFER_SIZE;i++){
    read(i);
    }


    or

    for i in buffer loop
    read(i);
    end loop;


    Maybe if people just quietly gave facts and hard numbers in the Great Language Wars then the Truth Will Out.... Nah. But it's worth a shot, anyway.

    --
    Zoe Brain - Rocket Scientist
  86. Re:Diversity in the Help Wanteds is Declining by The+Cat · · Score: 2

    I think this describes about 90% of the problems in the "IT Industry." It doesn't get any better after someone gets hired either.

  87. do you realize the world you live in? by Stu+Charlton · · Score: 2, Insightful

    "VB.Net is completely useless for the majority of software being developed"

    The majority of *programmers* are VB programmers according to the last 4 years of programmer surveys by Giga and Gartner. COBOL is 2nd, C++ is 3rd. Java is trailing in 4th.

    VB creates the most software out there: those hidden custom applications that you never see that run the backoffices of your banks, utilities, and insurance companies. It's changing, there's a lot more Java out there than before, and a lot more web based stuff, but this is just reality once you move beyond the ISV world.

    The author of this article is looking at the aggregate software community which is primarily made up of business developers.... C programmers aren't the majority of these.

    --
    -Stu
    1. Re:do you realize the world you live in? by Pfhreakaz0id · · Score: 2

      No, they don't. Here's a further clue:

      Most desktop computer (not embedded systems) programmers work for a business, for profit company whose profits derive from selling something besides software, or anything computer related. Of those, most development is done in VB. People working for sofware comanies/universities/ISP's are the small minority of developers.

  88. Everything looks the same when you are blind. by Jagasian · · Score: 2

    Python, Haskell, Clean, Mozart-Oz, Mercury, etc... all the same? Only to the blind. Open your eyes, open your mind.

    Most "real" hackers, coders, developers, computer scientists, etc... love programming for programming's sake. I suggest that if you are one of these "real" types, you spend a weekend programming in Mercury, another programming in Haskell, another in Python. Each time think up a project that could be done in around 16 hours of time, and code it using a certain paradigm: functional, procedural, object-oriented, declarative, etc... Trust me, it will open your eyes to the many different ways to accomplish the same thing. For certain tasks some things are better than others.

  89. Re:market domination by EvilJohn · · Score: 2

    Actually, writing an EverQuest client (first revision) is something Java could do quite nicely. The demos Java3d I saw at QuakeCon (and what you'll be able to see at GDC) are pretty convincing.

    Everquest's client was really that complicated, and Java3d is more then capable of rendering those types of scenes.

    --

    Less Talk, More Beer.
  90. The groupthink here is amazing. by Stu+Charlton · · Score: 5, Insightful

    Won't anyone stop and possibly think: maybe this isn't a ZDNet-FUD story, or a clueless journalist, but maybe a practitioner with a point?

    There seems to be a tremendously insular mindset here on Slashdot... Java and .NET have little relevance here, whereas C and C++ maintain their positions as the "true" languages.

    The majority of software developers and software development work gets performed today in large corporations in industries like financial, insurance, manufacturing, utilties, pharmaceuticals, defense, real estate, retail, etc. 90% of this work is effectively about writing something that talks to a database somewhere for operational or decision support (reporting) purposes.

    The culture of these companies is tremendously insular with regards to technological change. Here's a quick'n'dirty view of what tools are used generally out there, all IMHO:

    up until 1998:
    C++ (MFC, COM, UNIX), pick a 4GL (VB, Powerbuilder, Delphi), some Perl, tinkerings with Java, some niche technologies (WebObjects, Smalltalk, Lisp), and mainframe legacy (COBOL, fortran, etc.)

    past 1998:
    more Java, C++/COM going well, C++ UNIX going legacy, VB holding steady, Perl growing, other 4GLs going legacy, niche technologies being replaced with prior mentioned technologies, mainframe legacy being retrofitted for Y2K

    2002:
    Lots of Java, steady amounts of Perl & PHP, VB is legacy, C++ is legacy (COM and UNIX), some niche technologies remain but are targetted to be 'sunsetted', mainframe legacy systems in place but some are looking to be replaced with Java systems. Growing interest in .NET -- lots of training gigs, but very few consulting pilots yet.

    ANSI-C doesn't really enter into the picture. The #1 one criteria for choosing a technology in these businesses (usually) is how easy/quick can it talk to a relational database. Java's past performance problems are largely irrelevant today -- this language is running billions of dollars of transactions a day through thousands of companies. It works, and it's fast enough for most purposes.

    You may not agree with this picture, but it has been my experience as a senior consultant to many different companies throughout the world, and working for a company that is a Microsoft .NET national trainer. I don't think I'm alone in looking at these figures. Let me be very clear: The greatness of open source development is that none of this really matters. If you love a language, use it. The marketshare of a language really has no effect on whether you can use it to write good software, it really only speaks of the probability of getting a job or contract using a particular programming language and working as a custom software developer.

    Remember: my assumption is that the custom software marketplace is very conservative in the technologies it chooses because of the maintainance costs involved. So you see less diversity in using niche technologies unless a group with complex needs (i.e. an OODBMS in Smalltalk, or an expert system in LISP) shells out the extra $$ to get it done. Most systems just aren't written that way. If I'm wrong on this, if Goldman Sachs or Johnson & Johnson or Royal Dutch/Shell are really building most of their next projects spread over hundreds, if not thousands of developers -- all with ANSI-C, then I sit corrected.

    The author of this article is making an important point, though he didn't qualify it properly enough... language diversity is drying up in the custom software development market..

    This year, if you look at "growth", i.e. what languages are being used for new projects, there are only three major players: Java (mainly JSP/Servlet based), VB, and Perl (for backoffice automation), with other scripting languages like PHP and Python and Ruby in Japan doing smaller projects.

    In 2003, there will be more .NET in that equation. The author's prediction of a 50/50 .NET/J2EE split is silly. More realistically, by late 2003, mid-2004 I would suggest:

    50% J2EE
    30% VB, C++, Perl, Python, etc.
    20% .NET.

    Eventually .NET may grow to overtake the other languages, but I wouldn't bet on it until 2004 at best, no matter what the hype. It's a conservative industry, and not even Java, the current adoption rate record holder, was adopted as fast as some think .NET will be.

    The problem that Java introduced, and one that will be compounded is that if .NET catches on, there is a problem that the JVM or the CLR does not have a design that allows for true language innovation. We're stuck at extracting and sharing "design patterns" to patch all the shitholes we find in our languages instead of inventing new langauges to fix these problems.

    Sure, many people in this forum will point to implementations of ML, Haskell, LISP and Smalltalk on .NET. They won't point you to the absolutely horrendous performance problems of porting languages to .NET if they don't walk & talk like C#. This is where the "skinnable language" concept comes from... the CLR shipped with Windows is optimized for statically typed object oriented imperative ALGOL-like languages, C# and VB.NET in particular. You're not going to run Lisp, ML, Haskell, Self, Smalltalk on them with reasonable performance without a) bastardizing the language and b) using the .NET base class libraries & foregoing the libraries that ship with your language (a major hinderence for Common Lisp and Smalltalk, I'd say).

    I have a great interest in programming language innovations.... life isn't getting any simpler, and our programming languages are going to have to start looking more like Ruby, Python, Smalltalk or eventually even Lisp if we're going to be handling the burgeoning complexity that's out there. I get frustrated when BigCo's set the agenda with their marketing pushes and the industry sits still for yet another 5 years... until the next hype wave rolls through. We're going to have more failed projects, more long hours, and more stressed-out/cynical developers because language design isn't keeping pace with the rising complexity of problems we're trying to solve.

    While Java did a lot to bring some innovations like garbage collection to the mainstream in 1996... we should me moving beyond this... unfortunately and .NET is sealing us into another 5 years of the status quo.

    disclaimer: my opinions, not my employer's. take with grain of salt.

    --
    -Stu
  91. Re:Languages by RevAaron · · Score: 2

    Perhaps I should've said that better- what do any of the mainstream languages that Smalltalk doesn't? CL + CLOS is an incredible system, full of all sorts of interesting, useful, and just plain neat features. Smalltalk is the language in which I do most of my work, be it scripting or ecology research, but CL is my second most used language.

    But there's other ways of programming [besides OOP], whatever marketting hype might tell you.

    In Smalltalk, everything is an object. However, this doesn't mean you have to program using OOP. I've written functional and procedural programs in Smalltalk, usually small scripts.

    Macros are one of the things that Lisp really has over Smalltalk. Indeed, Lisp is a meta-language.

    Complex argument-lists not supported

    In Smalltalk, if you needed this functionality, you can work around it. It won't be as bootiful as in CL, but it's better than nothing. I assume you're speaking of using an arglist like (a b &rest). In Smalltalk, that could be something akin to the message header "do: a to: b with: anArray", of course, naming your keywords something that makes more sense than #do:to:with:. :)

    Method dispatch determined statically at runtime (a killer for dynamic languages)

    This has never been a problem with Smalltalk, since the begining. Cf. Object>>#doesNotUnderstand:, which allow you to do any sort of whacky message proxing or method dispatch at runtime.

    (yes, I know you mean the CLR, not sure which ones you mean to apply to Smalltalk)

    Good to see a couple kindred spirits on here, compared to the monotony of C/C++/Perl/PHP/Java sheep that hate parens or are confused by object-verb syntax. :)

    --

    Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
  92. Re:All languages are *not* the same by frank_adrian314159 · · Score: 3
    Like Python, Perl, Ada, Eiffel, VB, C#, Cobol, etc.? I don't look at them as skins

    Well, I program in Lisp and so I do. They're all simple procedural languages with a simple stack semantics with maybe a bit of object wrapping.

    Like the Red 'Lectroid from Buckaroo Bonzai said, "Big deal".

    --
    That is all.
  93. rehash of prevously reported article by StrawberryFrog · · Score: 2
    This is just an insipid rehash of One Runtime To Bind Them All: http://www.javalobby.org/clr.html

    As reported here on slashdot

    --

    My Karma: ran over your Dogma
    StrawberryFrog

  94. Re:All languages are *not* the same by SerpentMage · · Score: 2

    Ok so Eiffel.net can do Multiple Inheritance?

    --

    "You can't make a race horse of a pig"
    "No," said Samuel, "but you can make very fast pig"
  95. Re:What are YOU smoking by j7953 · · Score: 2
    Because of CLR, most languages for a common runtime will end up having the same abilities, just different syntaxes. So, if you know VB.Net, you'll be as 'powerful' a developer as someone who knows C#. But then your C# is probably watered down also.

    Which is, of course, a very flawed argument. All serious programming languages have the same capabilities, also known as "turing completeness." This doesn't make them the same languages, though. I'd agree that there's not much difference between different object-oriented/imperative languages (e.g. C#, Java, VB.NET, Delphi, ...) any more, but there are still lots of languages that are different.

    E.g. take a look at Mercury, a logic programming language (somewhat similar to Prolog, at least in syntax, I haven't used it yet). It's probably not very similar to an object-oriented language, but still it's available for .NET.

    Saying that all programming languages will become the same because they compile to .NET is about as logical as saying that they'll become the same because they all compile to machine language.

    There may be valid arguments against .NET, but this is just FUD.

    --
    Sig (appended to the end of comments I post, 54 chars)
  96. A few applications of other languages by Anonymous+Brave+Guy · · Score: 2

    The author obviously is not right about a lot of things...

    By the end of the year, two platforms--J2EE and .Net--will essentially control the programming languages market.

    S'funny, I coulda sworn all my friends who work in the embedded and/or instrument control markets couldn't even write most of their stuff using either J2EE or a .NET-hosted language. And there is orders of magnitude more development done there than for all the desktop and Internet-based apps put together. (Shock news, everyone: most applications would gain precisely 0% benefit from being Internet-enabled, distributed, turned into Web Services, or otherwise buzzworded up.) C (and sometimes C++) still reign supreme here.

    I know a few PhD or professional research level scientists whose work is computationally intensive, too. Many of them still use Fortran, because the mathematical abilities it provides are still hard to beat.

    Oh, and aren't something like 7/10 of the most-hit websites actually running on C++ back-ends, not any of the "distributed-friendly, Internet-friendly, no-buzzwords-here-honest-guv" languages?

    According to Microsoft, C# is the logical evolution of C++ and VB.Net is the logical evolution of VB. [...] Developers switching from C++ to Java concluded that Java was the natural evolution of C++. [...] In fact, if one were to look at computer science departments across the country, you'd see that Java has replaced C++.

    And yet none of these new languages can do some of the simplest things available to a C or C++ programmer, and the simplicity and fast prototyping that were VB's strongest points have been all-but-destroyed by VB.NET exposing everything to everyone.

    As for Java replacing C++ in academia, that is largely because most people teaching C++ at college/university level don't have a clue, and are readily embarrassed by their students asking awkward (but really quite simple) questions in lectures. Java makes it harder for the lecturers to make an ass of themselves within five minutes of the start of the course, and the reason for switching is as simple as that. Their teaching of Java often sucks, too, but it's not quite so obvious. (BTW, I do have an academic CS qualification, and I have had a lot of benefit from the course. The popular programming language tuition -- Java, C++, etc. -- was abysmal across the board, though.)

    --
    If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
  97. Re:All languages are *not* the same by spike666 · · Score: 2

    ahh, but isnt C# simply a Microsoft Branded Skinning of Java? even more so than j++ ?

  98. Easier to learn, so what? by staplin · · Score: 2

    Java is easier to learn. Hence you can push out more graduates from Compsci courses with it. Unfortunately, you can't apply those guys to say, kernel programming or embedded systems work because they are clueless w.r.t memory management and the guts of the machine.

    But you know what, school is a place to learn!

    When I got my CS degree, Java wasn't around, and C++ was just starting to be taught... often with the concept that OO would make it easier to learn. And you know what? The C and C++ I learned in school did very little to prepare me for how the languages were really used in industry.

    Even if a student had the best, most industry oriented schooling available, I doubt they could go immediately into kernel programming or embedded systems work and be productive the first day... And a lot of schools will acknowledge that fact.

    Schools are there to give you a solid understanding of how languages work, how to build the basic underpinnings of software, not the detailed knowledge of how software is applied in industry. Especially since that changes for every domain that is out there. As long as they know one language, it becomes simpler to pick up another, and to learn the nuances of that new language.

  99. K isn't good at scalar processing by Jayson · · Score: 2

    This has been discussed heavily on the K mailing list. Somebody has done a done a K-ish version of Ackermann's function that works very well. The way you program in K is different from the way you program in C. In K you choose to operate over bulk data and you slive object arrays length-wise, i.e. if you have an object of three fields x, y, and z, you would operator over all the x's, then all the y's, then all the z's.

  100. Java and .Net are written in C++ by GCP · · Score: 2

    His perspective is too narrow, clearly. Neither Sun nor MS have claimed that their operating systems will be rewritten in Java or .Net. These languages / platforms are designed to give custom app developers a better toolbox, but they aren't designed for all programming tasks.

    Even at Sun and MS, they'll take the extra time and effort to write in C/C++ if the breadth of deployment can support the extra hassle and cost. This choice will remain available to all other developers as well, along with quite a few other languages for other purposes (Perl for unix admin work, Fortran for number crunching, and so on.)

    --
    "Those who have never entered upon scientific pursuits know not a tithe of the poetry by which they are surrounded."
  101. Why We Care by epepke · · Score: 2

    Inexperienced programmers care, because they have ego space associated with a language.

    Experienced programmers care, because they know diversity brings health.

  102. I see your point, but... by Anonymous+Brave+Guy · · Score: 2
    Think about how much time you need to learn another language: 1-2 hours (or less) to learn the language, days or months to learn the API that language uses/has.

    I've heard a similar argument made several times recently: learning a language is easy, learning the API is hard. I'm sorry, but that's just rubbish.

    Learning to use a language well does not take 1-2 hours, it takes months. It's not just the keywords, it's the particular idioms, the underlying paradigms. If you choose to use a framework like .NET or J2EE where all languages are equal (even if some are more equal than others) then obviously the learning curve is dramatically reduced, but that's because all you've really changed is the syntax. The semantics of these languages are all much the same, which was kinda the point.

    On the other hand, I have never bothered to learn any APIs in all their 10,000-call detail. Most programmers use only a tiny fraction of such an API with any regularity, and will learn that along the way through frequent use. The skill with APIs isn't knowing all the details, it's knowing what it can do, and where to look to find those details if you happen to need them.

    Look at a couple of typical examples. If I'm programming C++, do I learn every detail of every interface in the standard library? No, of course not. I learn what algorithms, iterators and containers are, and how they fit together in the library. I learn what sorts of algorithms and such are available. Then I just keep a good reference book on the shelf, and look things up as needed.

    If I'm programming MFC for a Windows app, do I learn all the intricate little details about each class? Again, of course not. I learn roughly how the classes fit together -- windows, command targets and controls, the document-view architecture, and so on -- and then I keep a good book on the shelf.

    Basically, the flaw in the language vs. API learning argument is that while you have to have a fairly deep understanding of how to use a programming language to get good results, you don't need to learn whole APIs, just a sound overview and where to find out more.

    --
    If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
  103. Re:Programming in the US Military by Amazing+Quantum+Man · · Score: 2

    I think the main problem that people have with it is its pascal like syntax

    Again, agreed. I'd really love to shoot the guy who put the keyword " is " into the Ada language!

    --
    Fascism starts when the efficiency of the government becomes more important than the rights of the people.