vote up 2 vote down star
1

Is it a case by case basis or are there some languages you can compare and really have an honest, non-fanboy, completely measured quality difference between the two?

flag

11 Answers

vote up 12 vote down

"Quality" and "better" are both completely subjective terms. So if you're asking about the general, ostensibly objective case, the answer really is no. Even languages like Brainfuck serve a purpose.

If you restrict your answer to a particular person's style or a particular project (or even class of projects) and its needs, the answer becomes most definitely yes, there will be some languages well-suited to the task and others that are not.

link|flag
I agree with the overall point, but "quality" and "better" aren't necessarily subjective, if one specifies "better for what" in clear and measurable terms. Clearly, certain languages are measurably better (performing, for instance) at certain classes of problems. – Michael Dorfman Oct 1 '08 at 11:56
I agree, Michael, that's what I was trying to say. Probably I should have specified that they are completely subjective unless you specify "quality with regards to what" or "better for what" – Adam Bellaire Oct 1 '08 at 12:16
vote up 0 vote down

The answer is no. The quality of a language depends on the problem you use it on. Not every language is good for every problem, but for every problem there is at least one ideal language.

link|flag
True, but that ideal language may not yet exist. – littlenag Oct 1 '08 at 11:50
vote up 1 vote down

That is completely subjective since there is no way to tell without defining what means better.

That being said, you may find this site interesting. It compares language in terms of speed and memory usage, in a variety of algorithms which were implemented in each language.

link|flag
vote up 7 vote down

I'd say there are two possible cases here, for any two languages A and B:

1) Some projects will be better/easier/faster in A, given other constraints (the people working on the project, the target environment etc). Likewise some projects will be better/easier/faster in B.

2) All projects will be easier in A than B (or vice versa).

Case 1 occurs vastly, vastly more often than case 2. Indeed, I'd say case 2 would occur only in deliberately crafted circumstances. For example, you could create a language C~ which is C# but without the "using" statement. At that point, I'd say that C# is genuinely, objectively better than C~. However, most of the time it only makes sense to compare languages in the context of particular projects, requirements and constraints. Even then it's likely to be a balancing act rather than one language "winning" on every possible criterion.

link|flag
Is C-tilde a MS created native spanish version of c#? --for each?-- para cada x entero como en miRecaudación 'hacer algo siguiente – StingyJack Oct 1 '08 at 11:57
vote up 4 vote down

Recommended reading No Silver Bullet - Essence and Accidents of Software Engineering

link|flag
vote up 0 vote down

Depending on the task at hand yes.

It would be downright idiotic to write a basic webapp like a forum in c++. The alternatives like python and php are better.

It would be silly to try and write a cross platform painting application in visual basic.

If you need a lot of cheap developers lisp and haskell are bad choices.

link|flag
vote up 1 vote down

I'll answer yes. Theoretically, this is possible. However, it's a complicated and expensive project and it's even harder (if not impossible) to draw general conclusions that are not confined to one problem domain.

One good example is a study undertaken by Lutz Prechelt in 2000 that compared several languages, including C, C++ and Java:

An Empirical Comparison of Seven Programming Languages

Unfortunately, most discussions comparing different programming languages aren't based on any empirical evidence and are next to useless.

link|flag
Great paper Konrad, thanks for posting it. – Shane MacLaughlin Oct 1 '08 at 12:24
I always enjoy that article until "Comparison Validity" and realize that the "Java, C, and C++ programs were produced ... during a controlled experiment" and the "Perl, Python, Rexx, and Tcl programs" were sent in by self-selected programmers providing self-reported work times. – igouy Mar 21 at 17:23
vote up 1 vote down

I do think some languages are better than other; but there are lot of competing (and sometimes opposed) qualities. also, I think the relative importance of these qualities is totally subjective, so the final 'score' is up to you, even if each individual aspect were 'absolute'.

some good differentiating points between languages, in no specific order:

  1. standard libraries
  2. ease of extending
  3. minimalism
  4. adherence to principles
  5. as little 'magic' as possible
  6. ease of parsing
  7. good implementations (VM, JIT, compilers)
  8. availability
  9. ease of embedding in applications
  10. ease of packaging your app in a simple installer

(some of these are more about the implementation than about the language itself; but in practice they come together in most cases, so they're a big part of choicemaking.)

For me, all this means my favorite is Lua (wins in 2,3,4,5,7 and 9), with Python as a reasonable alternative (1, 8, 10). Special mention to JavaScript, only because of point 8, but hopefully soon 7

link|flag
How come you don't acknowledge point 4 for “There's only one right way” Python? If there's one language that preaches principes (and adheres to them), it's Python. – Konrad Rudolph Oct 1 '08 at 13:48
compared with Lua and LISP, Python is almost as messy as JavaScript – Javier Oct 1 '08 at 19:20
vote up 1 vote down

There's a lot of fanboyism involved, but in many cases you can always assert that a language is better than another for a particular situation.

Many languages have special or unique features that make them easier to work with in certain contexts, thus making them a "better" option. Some examples:

  • Assembly is the definitive language when you want terse, memory-tight code (think microcontroller development).
  • ADA/Erlang are kings when you need to have many concurrent processes.
  • Java was the first "write once run everywhere" language.
  • Perl/Ruby are great for handling large amounts of text.
  • Python is GREAT for everything (read: batteries-included approach). (allow me some fanboyism, please :)

Obviously, some languages are made great by the tools they provide, not only by their features:

  • VB and Delphi became really popular because their IDEs allowed people to design fancy UIs with minimal code and in record time.
  • Ruby became popular after Rails became the hallmark of web frameworks.
  • 'Script' languages are normally better at handling text.
  • PHP provided easy ways to access request variables, etc.

And then some others are perceived as better for a particular task:

  • You write Linux kernel code in C, because that's what 'they' use. Even if you can (and you can) you won't want to write kernel code in Pascal.
  • You write big .NET projects in either C# or VB, although you could be using Nemerle.
  • If you have some brain you do your client-side web scripting in Javascript even if you could use VBScript (and limit yourself a lot).

You are always working in some context or another so, in conclusion, there's always going to be a 'best' language for your situation. And there's where the fanboyism kicks in and makes you chose one over the other.

Obviously you can always make the point that some languages have better system integration, or better abstraction, or better XML support and so on, but most modern languages will provide the tools to make these irrelevant.

link|flag
vote up 0 vote down

Some of the answers here have been "yes, depending on the circumstances".

This is correct, where one language has features that another hasn't and vice-versa. Given the complexity of life there will always be circumstances where one is better. If you can't distinguish which is best in a circumstance, it does not mean they're equally good, just that you are imperfect at distinguishing.

Take for example, C. Given two languages, C and "C without a for loop", I can tell you with certainty that the former is better than the latter.

Unfortunately this analogy must be taken with a pinch of salt when comparing different languages. In the above example, all other things were being equal, but in the real world, using a language has lots of other consequences, such as the wage of your programmers etc.

link|flag
vote up 0 vote down

I agree with those who say "yes, depending on the circumstances".

I actually think it is a rather deep subject, and actually there are silver bullets, but not everybody has the right kind of gun. Here's my not-so-humble blog posting on the subject: link

link|flag

Your Answer

Get an OpenID
or

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