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?
|
feedback
|
closed as not constructive by Robert Harvey♦ Feb 2 at 19:06
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
"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. | |||||||||
feedback
|
|
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. | |||
feedback
|
|
Recommended reading No Silver Bullet - Essence and Accidents of Software Engineering | |||
|
feedback
|
|
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:
(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 | |||||
feedback
|
|
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. | |||||||||||
feedback
|
-- Paul Graham See the following also: | ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
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:
Obviously, some languages are made great by the tools they provide, not only by their features:
And then some others are perceived as better for a particular task:
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. | |||
|
feedback
|
|
I agree with most people that the answer depends on "for what?" A Priori, I'd say that No, no language is better than any other language. HOWEVER, there ARE languages that are WORSE than pretty much any language... Intercal, and Brainf*ck for example... (Yes, the second paragraph made exactly as much sense as you think it did. Where the examples are Intercal and Brainf*ck, you can't expect normal logic to mantain B-) | ||||
|
feedback
|
|
Yes. If you ask the right question. You need to add " for ..." to your question. "Is one language better than another FOR ...". In other terms: A race car is great for winning races, but it's terrible for plowing snow. A snow plow is terrible for winning races but is great for plowing." | ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||
feedback
|
|
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 | ||||
|
feedback
|