vote up 1 vote down star

This is just a food for thought question to help get content into the site for the beta. Hopefully it can spur some interesting discussion.

I have noticed with programming languages and environments that they tend to follow a curve that is in some ways similar to natural selection and evolution in species. Simple things tend to stay simple and have longevity (both bacteria and C have been around forever in basically the same form, and aren't going away anytime soon), whereas complicated things change radically, become useful, but then keep changing, change too much and then die. Or maybe they don't change enough and die. Complicated things tend to have narrow niches.

I'll use the .NET framework, and Microsoft's development environment as an example. I feel like things matured with C# 2.0, Visual Studio 2005, Sql Server 2005. .NET 1.1 was nice, but had some really annoying bugs and shortcomings, which were addressed in 2.0. Whenever I dig into the next release, I feel like it's all just lights and mirrors, and no actual usefulness. Sorry, I'm not a fan of linq. The new AJAX stuff is nice (I think that's ASP.NET 3.5?), but I can do AJAXy things in a million different ways using the current environment.

When do we say "enough is enough" and just stick with a platform that is performing perfectly for us?

Maybe this is just a sign that I'm getting old.

flag

43% accept rate

5 Answers

vote up 0 vote down

lol your getting old and a jaded =>

Serioursly - I feel the same about LinQ it just seems to fuzz the whole separation of SQL and Code.

I think that maturity of a language is when its in live production level code and many programs support it.

Or on another point - when sadly the underlying object model gets to be that you almost dont have to code as there is possible a method there - Java 6 anyone.

link|flag
Linq is not just Linq to SQL, there are plenty of other uses, which can make your code more elegant (nice to have), but also shorter and less error-prone. stackoverflow.com/questions/21280/… – Benjol Sep 29 '08 at 8:46
vote up -1 vote down

Never... It's because of these evolutions that we are able to do faster and better... so I think the answer should be never.

link|flag
vote up 1 vote down

I would say: As soon as not only the early adopters use it. As soon as you see a substantial growth. As soon as you see one Killer-Application written in it.

In short: A language is mature in the moment something big happened, and I do not mean big marketing.

Oh, and regarding your comment about .net: .net 2 brought possibly the most important new language feature - Generics. 3.0 brought two really nice new Tools into the Framework, WCF and WF. And .net 3.5 is more than just LinQ, it's also WPF, a technology which definitely still needs adopting and better/more integrated tools, but I think that it's a very valuable addition.

link|flag
I agree - a large app is probably the best indicator. This indicates that the programming language can accomplish non-trivial things and can scale, and these are the two main hurtles for programming languages to become effective to use. – Kyle Cronin Oct 2 '08 at 14:50
vote up -1 vote down

Use the right tools. If the current tool works for you, no need to change.

However, you need to learn about new tools. Computer languages are tools. If you don't keep up with the latest and greatest, then you won't know if a better tool exists.

People make the assumption that the tools they have and are used to are the best for them to do the job. That's not necessarily true. There may be newer tools that would make them more effective and efficient at doing the job.

There can also be a problem if a tool is no longer supported. Continued use of the tool might start to cost more, prompting a move to another tool.

To sum up, you have no obligation to use any tool you don't want to. You as a wielder of tools need to know what tools are available, how they are used, and what they are good for.

link|flag
vote up 0 vote down

I would say that it's mature when it passes such a test, the hype, and is still being researched with, advanced et cetera. When it hits hype, that's when the testing of if it can be a contender for a mature language --like setting your spartan child on a hill in the woods.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.