vote up 9 vote down star
1

I've read some of the recent language vs. language questions with interest... Perl vs. Python, Python vs. Java, Can one language be better than another?

One thing I've noticed is that a lot of us have very superficial reasons for disliking languages. We notice these things at first glance and they turn us off. We shun what are probably perfectly good languages as a result of features that we'd probably learn to love or ignore in 2 seconds if we bothered.

Well, I'm as guilty as the next guy, if not more. Here goes:

  • Ruby: All the Ruby example code I see uses the puts command, and that's a sort of childish Yiddish anatomical term. So as a result, I can't take Ruby code seriously even though I should.
  • Python: The first time I saw it, I smirked at the whole significant whitespace thing. I avoided it for the next several years. Now I hardly use anything else.
  • Java: I don't like identifiersThatLookLikeThis. I'm not sure why exactly.
  • Lisp: I have trouble with all the parentheses. Things of different importance and purpose (function declarations, variable assignments, etc.) are not syntactically differentiated and I'm too lazy to learn what's what.
  • Fortran: uppercase everything hurts my eyes. I know modern code doesn't have to be written like that, but most example code is...
  • Visual Basic: it bugs me that Dim is used to declare variables, since I remember the good ol' days of GW-BASIC when it was only used to dimension arrays.

What languages did look right to me at first glance? Perl, C, QBasic, JavaScript, assembly language, BASH shell, FORTH.

Okay, now that I've aired my dirty laundry... I want to hear yours. What are your language hangups? What superficial features bother you? How have you gotten over them?

flag
1  
Isn't the Yiddish term 'putz'? I've never seen it written as 'puts'. I guess I'm saying that I would never have thought to pronounce 'puts' that way. – Telemachus Feb 22 at 20:33
1  
Puts is certainly pronounced differently than putz. The 'u' sounds significantly different in both words. – Dean J Dec 2 at 17:48
show 7 more comments

35 Answers

1 2 next
vote up 23 vote down

I hate Hate HATE "End Function" and "End IF" and "If... Then" parts of VB. I would much rather see a curly bracket instead.

link|flag
10  
Seiti: You would want to see NOITCNUF at the end of a function? And ERUDECORP? and SSALC? How about ECAFRETNI? For POO (er, I mean OOP) languages? – jmucchiello Sep 18 at 19:39
show 4 more comments
vote up 16 vote down

PHP's function name inconsistencies.

// common parameters back-to-front
in_array(needle, haystack);
strpos(haystack, needle);

// _ to separate words, or not?
filesize();
file_exists;

// super globals prefix?
$GLOBALS;
$_POST;
link|flag
3  
Except that sometimes it's .length, and sometimes it's .length(), and yet other times it's .getLength() ~ – Pavel Minaev Dec 1 at 23:19
show 5 more comments
vote up 12 vote down

I never really liked the keywords spelled backwards in some scripting shells

if-then-fi is bad enough, but case-in-esac is just getting silly

link|flag
show 4 more comments
vote up 8 vote down

Pascal's Begin and End. Too verbose, not subject to bracket matching, and worse, there isn't a Begin for every End, eg.

Type foo = Record
    // ...
end;
link|flag
show 1 more comment
vote up 7 vote down

I just thought of another... I hate the mostly-meaningless URLs used in XML to define namespaces, e.g. xmlns="http://purl.org/rss/1.0/"

link|flag
vote up 6 vote down

Although I'm mainly a PHP developer, I dislike languages that don't let me do enough things inline. E.g.:

$x = returnsArray();
$x[1];

instead of

returnsArray()[1];

or

function sort($a, $b) {
    return $a < $b;
}
usort($array, 'sort');

instead of

usort($array, function($a, $b) { return $a < $b; });
link|flag
1  
The latter is doable in php 5.3 – orlandu63 Dec 1 at 23:59
vote up 6 vote down

C and C++'s syntax is a bit quirky. They reuse operators for different things. You're probably so used to it that you don't think about it (nor do I), but consider how many meanings parentheses have:

int main()        // function declaration / definition
printf("hello")   // function call
(int)x            // type cast
2*(7+8)           // override precedence
int (*)(int)      // function pointer
int x(3)          // initializer
if (condition)    // special part of syntax of if, while, for, switch

And if in C++ you saw

foo<bar>(baz(),baaz)

you couldn't know the meaning without the definition of foo and bar.

  • the < and > might be a template instantiation, or might be less-than and greater-than (unusual but legal)
  • the () might be a function call, or might be just surrounding the comma operator (ie. perform baz() for size-effects, then return baaz).

The silly thing is that other languages have copied some of these characteristics!

link|flag
1  
Consistent and smart use of whitespace can help clear up some of the ambiguities... but no one cares. – yodie Dec 2 at 0:05
vote up 5 vote down

Java, and its checked exceptions. I left Java for a while, dwelling in the .NET world, then recently came back.

It feels like, sometimes, my throws clause is more voluminous than my method content.

link|flag
2  
The java exception constructor has a "cause" parameter so that you can do exception chaining, precisely to prevent this. You should only throw exceptions which are relevant at the abstraction level of your class. – wcoenen Feb 22 at 20:34
vote up 5 vote down

I like object-oriented style. So it bugs me in Python to see len(str) to get the length of a string, or splitting strings like split(str, "|") in another language. That is fine in C; it doesn't have objects. But Python, D, etc. do have objects and use obj.method() other places. (I still think Python is a great language.)

Inconsistency is another big one for me. I do not like inconsistent naming in the same library: length(), size(), getLength(), getlength(), toUTFindex() (why not toUtfIndex?), Constant, CONSTANT, etc.

The long names in .NET bother me sometimes. Can't they shorten DataGridViewCellContextMenuStripNeededEventArgs somehow? What about ListViewVirtualItemsSelectionRangeChangedEventArgs?

And I hate deep directory trees. If a library/project has a 5 level deep directory tree, I'm going to have trouble with it.

link|flag
2  
Seriously. Why make it 99% object-oriented and then throw some random non-OO stuff in there for no apparent reason? GAH! – Daniel Straight Feb 28 at 5:44
vote up 4 vote down

All the []s and @s in Objective C. Their use is so different from the underlying C's native syntax that the first time I saw them it gave the impression that all the object-orientation had been clumsily bolted on as an afterthought.

link|flag
show 1 more comment
vote up 3 vote down

There's nothing in the world I hate more than php.

  1. Variables with $, that's one extra odd character for every variable.
  2. Members are accessed with -> for no apparent reason, one extra character for every member access.
  3. A freakshow of language really.
  4. No namespaces.
  5. Strings are concatenated with ..
  6. A freakshow of language.
link|flag
1  
And the extra characters ($ and >) require you press shift which is annoying and increases typos. – Jared Updike Oct 29 '08 at 18:59
1  
not much, if you don't think operators in a programming language should be intuitive. Most proper OO languages have . for member access and + for string concatenation. So you'd expect similar behaviour. But then, php is not an OO language, let alone a proper language. – Vasil Feb 23 at 21:09
show 4 more comments
vote up 3 vote down

Coding Style inconsistencies in team projects.

I'm working on a large team project where some contributors have used 4 spaces instead of the tab character. Working with their code can be very annoying - I like to keep my code clean and with a consistent style.

It's bad enough when you use different standards for different languages, but in a web project with HTML, CSS, Javascript, PHP and MySQL, that's 5 languages, 5 different styles, and multiplied by the number of people working on the project.

I'd love to re-format my co-workers code when I need to fix something, but then the repository would think I changed every line of their code.

link|flag
vote up 2 vote down

It irritates me sometimes how people expect there to be one language for all jobs. Depending on the task you are doing, each language has its advantages and disadvantages. I like the C-based syntax languages because it's what I'm most used to and I like the flexibility they tend to bestow on the developer. Of course, with great power comes great responsibility, and having the power to write 150 line LINQ statements doesn't mean you should.

I love the inline XML in the latest version of VB.NET although I don't like working with VB mainly because I find the IDE less helpful than the IDE for C#.

link|flag
show 1 more comment
vote up 2 vote down

In C/C++, it annoys me how there are different ways of writing the same code.

e.g.

if (condition)
{
   callSomeConditionalMethod();
}
callSomeOtherMethod();

vs.

if (condition)
   callSomeConditionalMethod();
callSomeOtherMethod();

equate to the same thing, but different people have different styles. I wish the original standard was more strict about making a decision about this, so we wouldn't have this ambiguity. It leads to arguments and disagreements in code reviews!

link|flag
2  
"In C/C++, there are different ways of writing the same code" Man, did you ever program in Perl? =) – Seiti Nov 3 '08 at 1:53
show 3 more comments
vote up 2 vote down

I found Perl's use of "defined" and "undefined" values to be so useful that I have trouble using scripting languages without it.

Perl:

($lastname, $firstname, $rest) = split(' ', $fullname);

This statement performs well no matter how many words are in $fullname. Try it in Python, and it explodes if $fullname doesn't contain exactly three words.

link|flag
show 2 more comments
vote up 2 vote down

If Microsoft had to invent yet another C++-like language in C# why didn't they correct Java's mistake and implement support for RAII?

link|flag
4  
That sounds like IDisposable to me. – David Dec 1 at 23:12
1  
@jmucchiello: I'm afraid it's not that simple (otherwise Java and C# probably would do it :-)). The problem is that the instance referenced by a variable can survive the instance (if the instance is copied & stored somewhere, such as in a collection). To clean up theses instances, you need garbage collection, which cannot support RAII.. – sleske Dec 2 at 0:40
show 2 more comments
vote up 2 vote down

SQL, they say you should not use cursors and when you do, you really understand why...
its so heavy going!


    DECLARE mycurse CURSOR LOCAL FAST_FORWARD READ_ONLY
    	FOR
    	SELECT field1, field2, fieldN FROM atable

    OPEN mycurse
    FETCH NEXT FROM mycurse INTO @Var1, @Var2, @VarN

    WHILE @@fetch_status = 0
    BEGIN
    	-- do something really clever...

    	FETCH NEXT FROM mycurse INTO @Var1, @Var2, @VarN
    END
    CLOSE mycurse
    DEALLOCATE mycurse

link|flag
show 1 more comment
vote up 2 vote down

Case sensitivity.

What kinda hangover do you need to think that differentiating two identifiers solely by caSE is a great idea?

link|flag
3  
In Java it's quite conventional to name your classes with a capital first, and your instances in lower case. It is very common to see something like: Person person = new Person(); – Dean Oct 2 '08 at 13:48
1  
It's seems every language designer except for Bill Gates was hungover. – Vasil Oct 3 '08 at 7:40
5  
I totally have the opposite view! I like how in Haskell, case sensitivity is used sort of as part of the syntax (types and constructors always uppercase, variables always lower). I find it to be extremely elegant. – Jared Updike Oct 29 '08 at 19:01
show 1 more comment
vote up 2 vote down

I hate semi-colons. I find they add a lot of noise and you rarely need to put two statements on a line. I prefer the style of Python and other languages... end of line is end of a statement.

link|flag
show 2 more comments
vote up 2 vote down

I abhor the boiler plate verbosity of Java.

  • writing getters and setters for properties
  • checked exception handling and all the verbiage that implies
  • long lists of imports

Those, in connection with the Java convention of using veryLongVariableNames, sometimes have me thinking I'm back in the 80's, writing IDENTIFICATION DIVISION. at the top of my programs.

Hint: If you can automate the generation of part of your code in your IDE, that's a good hint that you're producing boilerplate code. With automated tools, it's not a problem to write, but it's a hindrance every time someone has to read that code - which is more often.

While I think it goes a bit overboard on type bureaucracy, Scala has successfully addressed some of these concerns.

link|flag
1  
System.out.Println is ridiculous for what most languages call puts – earlz Dec 1 at 23:58
vote up 1 vote down

Java's packages. I find them complex, more so because I am not a corporation. I vastly prefer namespaces. I'll get over it, of course - I'm playing with the Android SDK, and Eclipse removes a lot of the pain. I've never had a machine that could run it interactively before, and now I do I'm very impressed.

link|flag
show 5 more comments
vote up 1 vote down

Prolog's if-then-else syntax.

x -> y ; z

The problem is that ";" is the "or" operator, so the above looks like "x implies y or z".

link|flag
show 1 more comment
vote up 1 vote down

Although I program primarily in python, It irks me endlessly that lambda body's must be expressions.

I'm still wrapping my brain around JavaScript, and as a whole, Its mostly acceptable. Why is it so hard to create a namespace. In TCL they're just ugly, but in JavaScript, it's actually a rigmarole AND completely unreadable.

In SQL how come everything is just one, huge freekin SELECT statement.

link|flag
vote up 1 vote down

Any language that can't fully decide if Arrays/Loop/string character indexes are zero based or one based.

I personally prefer zero based, but any language that mixes the two, or lets you "configure" which is used can drive you bonkers. (Apache Velocity - I'm looking in your direction!)

snip from the VTL reference (default is 1, but you can set it to 0):

# Default starting value of the loop
# counter variable reference.
directive.foreach.counter.initial.value = 1

(try merging 2 projects that used different counter schemes - ugh!)

link|flag
vote up 0 vote down

I hated the parentheses in Lisp and Scheme, because after C, C# and languages like that it seemed very obfuscated, and it wasn't really clear how things are related. However, now that I know something about Scheme, and it's usual formatting guidelines, I wouldn't say that I like the way it works, but at least I understand, and overcome my fears when reading code written in List/Scheme.

I think if you learn something and use it for a while(maybe even a few hours are enough, at least it was for me), you can actually overcome your dislike in the syntax, and will be able to concentrate on what you are supposed to do really with the tool which is the language.

link|flag
show 1 more comment
vote up 0 vote down

tsql begin & end...damn that's annoying...

link|flag
vote up 0 vote down

In most languages, file access. VB.NET is the only language so far where file access makes any sense to me. I do not understand why if I want to check if a file exists, I should use File.exists("") or something similar instead of creating a file object (actually FileInfo in VB.NET) and asking if it exists. And then if I want to open it, I ask it to open: (assuming a FileInfo object called fi) fi.OpenRead, for example. Returns a stream. Nice. Exactly what I wanted. If I want to move a file, fi.MoveTo. I can also do fi.CopyTo. What is this nonsense about not making files full-fledged objects in most languages? Also, if I want to iterate through the files in a directory, I can just create the directory object and call .GetFiles. Or I can do .GetDirectories, and I get a whole new set of DirectoryInfo objects to play with.

Admittedly, Java has some of this file stuff, but this nonsense of having to have a whole object to tell it how to list files is just silly.

Also, I hate ::, ->, => and all other multi-character operators except for <= and >= (and maybe -- and ++).

link|flag
show 2 more comments
vote up 0 vote down

[Disclaimer: i only have a passing familiarity with VB, so take my comments with a grain of salt]

I Hate How Every Keyword In VB Is Capitalized Like This. I saw a blog post the other week (month?) about someone who tried writing VB code without any capital letters (they did something to a compiler that would let them compile VB code like that), and the language looked much nicer!

link|flag
vote up 0 vote down

In Ruby, I very strongly dislike how methods do not require self. to be called on current instance, but properties do (otherwise they will clash with locals); i.e.:

def foo()
   123
end

def foo=(x)
end

def bar()
    x = foo() # okay, same as self.foo()
    x = foo   # not okay, reads unassigned local variable foo
    foo = 123 # not okay, assigns local variable foo
end

To my mind, it's very inconsistent. I'd rather prefer to either always require self. in all cases, or to have a sigil for locals.

link|flag
vote up 0 vote down

My big hangup is MATLAB's syntax. I use it, and there are things I like about it, but it has so many annoying quirks. Let's see.

  • Matrices are indexed with parentheses. So if you see something like Image(350,260), you have no clue from that whether we're getting an element from the Image matrix, or if we're calling some function called Image and passing arguments to it.
  • Scope is insane. I seem to recall that for loop index variables stay in scope after the loop ends.
  • If you forget to stick a semicolon after an assignment, the value will be dumped to standard output.
  • You may have one function per file. This proves to be very annoying for organizing one's work.

I'm sure I could come up with more if I thought about it.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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