Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Subjectively,

  • What is the most consistent programming language? [why]
  • What is the most inconsistent programming language? [why]
  • Does the inconsistent language have any abstraction libraries to improve consistency?

I believe C is the most consistent and organised language, as functions have generally the same argument ordering, as well as the good function naming scheme.

PHP, being ironically loosely based off of C, is very, very inconsistent. There are so many duplicate functions, as well as every function having a different argument ordering. Some functions use camelcase, while others use underscores. You also can't use the [] operator on a function call, for no good reason at all, requiring you to set a variable to the function return value.

I am not aware of any abstraction library present to make PHP more consistent.

share|improve this question
4  
Perhaps an interesting private research topic, but I don't think it'll make for a great thread. Could be wrong, but my opinion is that it doesn't belong here. Others may disagree. – Noon Silk Aug 15 '10 at 3:20
3  
Reasons: Subjective. Argumentative. Probably an incorrect premise. Incites a war of opinions on which language is most consistent. Get real, Prasoon. – Heath Hunnicutt Aug 15 '10 at 3:21
4  
@Delan - That doesn't matter. It's not an appropriate question. Community Wiki doesn't fix that. – Heath Hunnicutt Aug 15 '10 at 3:21
6  
@Delan I don't know who put out the word that CW == Shield to protect posts from being closed, but tell them they're wrong – Michael Mrozek Aug 15 '10 at 3:23
5  
@Delan - As your financial advisor will say, past results do not guarantee future performance. One question making it through the filter in the past doesn't mean it's okay for yours. The simple fact is that subjective questions are actively discouraged. Community wiki does not change that. Community wiki is for posts where you want or need to give up "ownership" of a post and give that post to the community to edit. – Joel Coehoorn Aug 15 '10 at 3:47
show 15 more comments

closed as not a real question by ShreevatsaR, TomTom, Paul Dixon, sepp2k, DeadMG Aug 15 '10 at 10:55

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

up vote 4 down vote accepted

Most consistent: Lambda calculus. Utterly minimal, yet you can actually write programs in it! And then, LISP and others with solid formal basis and little syntactic sugar.

Least consistent: pick your least favorite. I personally hate TCL. It can't decide whether it's a shell or a real programming language. The scoping semantics are bizarre and awful, and tend to make program flow and organization impossible to decipher. But yeah, Frankenstein web systems suck… I just haven't had the pleasure.

As for C being ideal,

  • Consider the different ways to define a constant. There's #define, enum, and const.
  • Sometimes an array (or the name of an array) is just a pointer, sometimes it's a real object.
  • setjmp was initially ill-specified resulting in draconian rules for nonlocal goto.
  • Compiler hints such as register and auto became obsolete. Meanwhile other keywords such as const and restrict were introduced as extensions, some later standardized and some not. Some compilers introduced generic syntax for such extensions such as GCC __attribute__, but standardized generic tag syntax will only be gradually phased in with C++0x.
  • The meaning of modulo and division with negative divisors was only standardized in C99, meaning that C++ remains ambiguous until C++0x. (And the way they did define it, integers cease to be a ring.)
  • Multithreading is unspecified, where thread library functions must implement often ill-specified informal memory fences. (Fixed in C++0x.)
  • Tuples have faced a long, slow adoption path. Even C++0x is inferior to say Caml. (On a related note, the lack of type deduction has only encouraged programmers to defeat strong typing with casts.)

This is just what I can think of. Sure these faults are nitpicky, but perfection is achievable and we shouldn't settle for less.

share|improve this answer
I agree that C is hardly a model for consistency, though I don't consider the distinct meanings of #define, enum, and const to be inconsistencies, since they have distinct meanings that are needed in different places. The behavior of array types, however, is pretty hideous (and I doubt even 5% of programmers really understand the difference between passing a char[3], a char[], and a char*); that's an inconsistency in some types' behavior compared with other types, but conforming compilers will implement such things the same way. Potentially interesting question, if asked better. – supercat Jan 20 at 21:43

Consistent: APL, and its successor, J.

Everything is an array (well, there are scalars), and all the operators operate on arrays as a whole.

share|improve this answer
1  
I also downvoted you for the same reasons that I downvoted Akash and Missing Faktor. Your rating is subjective and fairly meaningless I think. So what if everything is an array. I don't see how this makes anything more "consistent". – Noon Silk Aug 15 '10 at 7:53
@silky: You know nothing about array languages (en.wikipedia.org/wiki/Array_programming) and you still downvote this answer. Bravo. That's what I call misusing the power. – missingfaktor Aug 15 '10 at 8:20
@Ira Baxter: +1, simply to balance the idiotic downvote by @silky. – missingfaktor Aug 15 '10 at 8:21
I see no reason you for you claim I don't know about array programming, and I also see no reason to consider downvoting a 'power'. I'm downvoting answers in here to demonstrate how pointless this thread is. My opinion differs to yours; there is no correct answer here, the question is poorly defined and IMHO it should be closed. But I will not continue to participate in here; I've made my point. – Noon Silk Aug 15 '10 at 8:22
@silky: Then downvote the question, or vote to close it. No point in going about downvoting all the answer in this thread. – missingfaktor Aug 15 '10 at 8:24
show 4 more comments

I believe C is the most consistent and organised language, as functions have generally the same argument ordering, as well as the good function naming scheme.

Neither of those things is an attribute of the programming language. Maybe of the standard library, although you could hardly describe it as having a good function naming scheme. So it's difficult to know what criteria you have in mind here.

share|improve this answer

C# is Most Consistent, it has brought fairly new concepts and gives lots of flexibilities. Just apart from language, Microsoft's state of art documentation and help files make it extrememly strong programming language with lot of examples.

PHP is most inconsistent, poorly documented, poorly managed, its like a junk yard with lot of comment/text thrown at by everyone who probably have no idea of what software engineering is.

share|improve this answer
3  
This is absolute rubbish. Java has had better documentation than C# since basically forever. Any reasonable person knows that using the MSDN is typically a nightmare, but it's getting better. Your rating has nothing to do with this so-called "consistency". It's what you prefer. You are entitled to that opinion, but it's not really a useful one to discuss without significant work, IMHO. – Noon Silk Aug 15 '10 at 7:28
1  
Really, you found PHP to be poorly documented? – user353297 Aug 15 '10 at 10:24

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