vote up 134 vote down star
123

There's been a cluster of Perl-hate on Stackoverflow lately, so I thought I'd bring my "Five things you hate about your favorite language" question to StackOverflow. Take your favorite language and tell me five things you hate about it. Those might be things that just annoy you, admitted design flaws, recognized performance problems, or any other category. You just have to hate it, and it has to be your favorite language.

Don't compare it to another language, and don't talk about languages that you already hate. Don't talk about the things you like in your favorite language. I just want to hear the things that you hate but tolerate so you can use all of the other stuff, and I want to hear it about the language you wished other people would use.

I ask this whenever someone tries to push their favorite language on me, and sometimes as an interview question. If someone can't find five things to hate about his favorite tool, he don't know it well enough to either advocate it or pull in the big dollars using it. He hasn't used it in enough different situations to fully explore it. He's advocating it as a culture or religion, which means that if I don't choose his favorite technology, I'm wrong.

I don't care that much which language you use. Don't want to use a particular language? Then don't. You go through due diligence to make an informed choice and still don't use it? Fine. Sometimes the right answer is "You have a strong programming team with good practices and a lot of experience in Bar. Changing to Foo would be stupid."


This is a good question for code reviews too. People who really know a codebase will have all sorts of suggestions for it, and those who don't know it so well have non-specific complaints. I ask things like "If you could start over on this project, what would you do differently?" In this fantasy land, users and programmers get to complain about anything and everything they don't like. "I want a better interface", "I want to separate the model from the view", "I'd use this module instead of this other one", "I'd rename this set of methods", or whatever they really don't like about the current situation. That's how I get a handle on how much a particular developer knows about the codebase. It's also a clue about how much of the programmer's ego is tied up in what he's telling me.

Hate isn't the only dimension of figuring out how much people know, but I've found it to be a pretty good one. The things that they hate also give me a clue how well they are thinking about the subject.

flag
2  
This is a really nice spin on the old "your favorite language" question. Good justification. – Tom Leys Nov 11 '08 at 23:03
2  
I find it interesting that despite SO having a large .NET audience, at the time of this writing there are 24 answers, only one of which (mine) is about .NET or a .NET language. I have no idea what this says about SO or .NET, but it's interesting... – Jon Skeet Nov 11 '08 at 23:40
6  
Btw I think every language deserves its own hate page in SO :) – utku_karatas Nov 14 '08 at 0:04
show 1 more comment

120 Answers

prev 1 2 3 4
vote up 18 vote down

Objective C

1) No namespaces, just manual naming conventions - I don't mind the that in terms of class separation, but I do miss being able to import all class definitions in a namespace in a single line (like import com.me.somelibrary.*).

2) Libraries still have some holes in important areas like RegEx support.

3) Property syntax is a bit clumsy, requiring three lines (in two separate files) to declare a property.

4) I like the retain/release model, but it is easier than it should be to release a reference and then accidentally make use of it later.

5) Although not really a language feature, XCode is so intertwined with use of Objective C I can't help thinking about that aspect... basically the autocompletion, is very iffy. It's more like a system that rewards you for finding something you want exists, and then presents it as a choice afterwards. But then I suppose I never have liked autocomplete engines.

link|flag
1  
Agree about the namespaces, prefixing classes with letter codes is dumb. And I would add missing support for real class variables, I don’t like faking them with file statics. – zoul Nov 13 '08 at 18:05
show 3 more comments
vote up 6 vote down

Haskell:

  1. Space leaks from lazy evaluation.
  2. Numeric Hierarchy not constructed with regard to mathematical abstractions.
  3. Strict monadic IO can make it harder to debug.
  4. The big implementations handle I/O in ways that don't seem quite compatible with the standard. (In particular, outputting characters only outputs the low 8 bits -- and then code gets built that uses this assumption to do binary I/O. Ick.)
  5. Associativity of ($) operator could be changed to make some expressions prettier.

Most of these don't rise to the level of hate, and there are people trying to fix or construct solid workarounds for each of these.

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

C++

  1. It takes so much time to make a simple snippet of code.
  2. for(std::vector::const_iterator iter = [...]
  3. vector.remove() doesn't remove.
  4. vector.push_front() doesn't exist.
  5. header files
  6. No lambda
  7. No automatic empty virtual destructor if there is at least one virtual function.
link|flag
1  
#3, it does. It just doesn't delete. #4 use deque. – Jasper Bekkers Nov 18 '08 at 20:08
show 2 more comments
vote up 29 vote down

Perl

  • Mixed use of sigils

    my @array = ( 1, 2, 3 );
    my $array = [ 4, 5, 6 ];
    
    
    my $one  = $array[0]; # not @array[0], you would get the length instead
    my $four = $array->[0]; # definitely not $array[0]
    
    
    my( $three, $four ) = @array[1,2];
    my( $five,  $six  ) = @$array[1,2]; # coerce to array first
    
    
    my $length_a = @array;
    my $length_s = @$array;
    
    
    my $ref_a = \@array;
    my $ref_s = $array;
    
    • For example none of these are the same:

      $array[0]   # First element of @array
      @array[0]   # Slice of only the First element of @array
      %array[0]   # Syntax error
      $array->[0] # First element of an array referenced by $array
      @array->[0] # Deprecated first element of @array
      %array->[0] # Invalid reference
      $array{0}   # Element of %array referenced by string '0'
      @array{0}   # Slice of only one element of %array referenced by string '0'
      %array{0}   # Syntax error
      $array->{0} # Element of a hash referenced by $array
      @array->{0} # Invalid reference
      %array->{0} # Deprecated Element of %array referenced by string '0'
      

    In Perl6 it is written:

    my @array = ( 1, 2, 3 );
    my $array = [ 4, 5, 6 ];
    
    
    my $one  = @array[0];
    my $four = $array[0]; # $array.[0]
    
    
    my( $three, $four ) = @array[1,2];
    my( $five,  $six  ) = $array[1,2];
    
    
    my $length_a = @array.length;
    my $length_s = $array.length;
    
    
    my $ref_a = @array;
    my $ref_s = $array;
    
  • Lack of true OO

    package my_object;
    # fake constructor
    sub new{ bless {}, $_[0] }
    # fake properties/attributes
    sub var_a{
      my $self = shift @_;
      $self->{'var_a'} = $_[0] if @_;
      $self->{'var_a'}
    }
    

    In Perl6 it is written:

    class Dog is Mammal {
        has $.name = "fido";
        has $.tail is rw;
        has @.legs;
        has $!brain;
        method doit ($a, $b, $c) { ... }
        ...
    }
    
  • Poorly designed regex features

    /(?=regexp)/;           # look ahead
    /(?<=fixed-regexp)/;    # look behind
    /(?!regexp)/;           # negative look ahead
    /(?<!fixed-regexp)/;    # negative look behind
    /(?>regexp)/;           # independent sub expression
    /(capture)/;            # simple capture
    /(?:don't capture)/;    # non-capturing group
    /(?<name>regexp)/;      # named capture
    /[A-Z]/;                # character class
    /[^A-Z]/;               # inverted character class
    # '-' would have to be the first or last element in
    # the character class to include it in the match
    # without escaping it
    /(?(condition)yes-regexp)/;
    /(?(condition)yes-regexp|no-regexp)/;
    /\b\s*\b/;              # almost matches Perl6's <ws>
    /(?{ print "hi\n" })/;  # run perl code
    

    In Perl6 it is written:

    / <?before pattern>  /;   # lookahead
    / <?after pattern>   /;   # lookbehind
    / regexp :: pattern  /;   # backtracking control
    / ( capture )        /;   # simple capture
    / $<name>=[ regexp ] /;   # named capture
    / [ don't capture ]  /;   # non-capturing group
    / <[A..Z]>           /;   # character class
    / <-[A..Z]>          /;   # inverted character class
    # you don't generally use '.' in a character class anyway
    / <ws>               /;   # Smart whitespace match
    / { say 'hi' }       /;   # run perl code
    
  • Lack of multiple dispatch

    sub f(   int $i ){ ... }  # err
    sub f( float $i ){ ... }  # err
    sub f($){ ... } # occasionally useful
    

    In Perl6 it is written:

    multi sub f( int $i ){ ... }
    multi sub f( num $i ){ ... }
    multi sub f( $i where $i == 0 ){ ... }
    multi sub f(     $i ){ ... } # everything else
    
  • Poor Operator overloading

    package my_object;
    use overload
      '+' => \&add,
      ...
    ;
    

    In Perl6 it is written:

    multi sub infix:<+> (Us $us, Them $them) |
                        (Them $them, Us $us) { ... }
    

link|flag
2  
I don't see lack of true OO as being as bad as you make it. Sometimes, it's a saviour, especially when the CPAN module you're using didn't think to expose what you need. And lack of multiple dispatch could be worse: perl could have been strongly typed ;-) – Tanktalus Nov 28 '08 at 18:57
1  
$array->[0] != $array[0] != @array[0] – Brad Gilbert Dec 6 '08 at 2:51
2  
I like that Perl isn't strongly typed, but it would be useful to add in some type information. – Brad Gilbert Dec 10 '08 at 22:01
3  
It seems like you chose to criticize a language that's not your favorite (you should have criticized perl6) – Frew Feb 23 at 4:13
1  
Perl6 improves upon them. – Brad Gilbert Feb 23 at 18:45
show 11 more comments
vote up 72 vote down

Javascript:

  1. It's fugly

  2. All the coolest things are insanely complex, but then, all the coolness is also wrapped up in such a small amount of code that you feel stupid for struggling to follow it

  3. '+' is an absurd choice of operator for concatenation in a weakly-typed language. Were they trying to scare off the noobs?

  4. It's a cross-browser compatibility minefield (never mind if it's even turned on or not)

  5. It's generally untrusted - associated with scummery such as blocking the back button, pop-ups that never die, etc.

  6. Did I mention that it's fugly?

If it wasn't for jQuery, I'd probably still hate it as much as I used to :)

link|flag
4  
indeed, jQuery totally fixed my hate for javascript (as soon as you get the chaining part that is). – Pim Jager Nov 15 '08 at 11:02
37  
-1, this list is not about the language but the browser environment. Javascript itself rocks – Mauricio Scheffer Jan 21 at 13:46
6  
I agree with mausch. ECMAscript in and of itself is a beautiful and powerful language. It's the pesky browsers (:cough: IE) that muddle its name. – tj111 Feb 6 at 20:54
5  
@Mausch: where does javascript live in the vast majority of cases? You're saying the equivalent of "cars don't contribute to global warming, it's driving cars that does it" - true, of course, but missing the point - what else do you do with a car? – jTresidder Feb 7 at 14:47
7  
@Chris: Yes, "+" is a good operator for concatenation in a strongly typed language (like Python). In a weakly typed language (like Javascript or C) it is terrible; it decides (silently!) that 'sum: '+2+3 is not 'sum: 5' but 'sum: 23'. Someone with more Javascript experience can give better examples. – ShreevatsaR Feb 20 at 0:01
show 11 more comments
vote up 48 vote down

PHP:

1) Forces me to make unnecessary variables:

$parts = explode('|', $string);
$first = $parts[0];

2) An implementation of lambdas so lame it is roughly equivalent to using eval() and so hidiously wrong I have never used it (see www.php.net/create_function).

3) A try/catch system which can only catch about 80% of errors that might occur.

4) Regex support just as lame as lambda support because it has to be written inside regular strings, making one of the most hard-to-learn programming tools about three times as difficult. And PHP is supposed to be an "easy" language?!?!?

5) No way to safely pull stuff out of $_POST without writing it twice or building your own function, or using the '@' operator:

$x = isset($_POST['foo']['bar']) ? $_POST['foo']['bar'] : null;

6) Bonus answer: '@'. If you can't be bothered writing your code correctly, just add '@', and too bad for anyone who has to debug your code later.

link|flag
15  
what about list($first) = explode('|', $string); ? – mlarsen Nov 12 '08 at 6:56
1  
or $first = explode('|', $string); $first = $first[0]; – Pim Jager Nov 15 '08 at 11:04
5  
Ideally, I would like to use some_function(explode('|', $string)[0]); – too much php Nov 16 '08 at 21:10
1  
Best solution for #1 is to use strtok. That only works if you're getting the first element - otherwise list is the only other method I can think of (apart from using some hideous regex...). I, too, would love to add [0] to the end of functions. It's very neat and intuitive. – DisgruntledGoat Jan 5 at 21:58
2  
What weird variable scoping? Having everything local and forcing you to declare when you want to use a global is a good idea, it prevent noobs from making functions that just use globals, rather than using arguments and return values like they should do. – scragar Sep 10 at 9:12
show 10 more comments
vote up 24 vote down

Javascript

  1. numbers as strings - Math can be frustrating when numbers are intpreted as strings. 5 + 2 = 52? Grrr...
  2. permissions - all the best stuff requires permission from the user!
  3. screen updates - The browser must be in the steady state to update the screen. There doesn't seem to be a way to force the screen to update in the middle of a script.
  4. Slow - although Google's Chrome is nice...
  5. Browser differences make using the language a [censored].
link|flag
2  
false == 0 == [] == "" but null and NaN are not. NaN != NaN. null == null. – Jimmy Nov 24 '08 at 19:21
2  
typeof "a string" == "string". typeof new String("another string") == "object. new String('a').constructor == "a".constructor. typeof new Array() == 'object' – Jimmy Nov 24 '08 at 19:24
1  
-1, this list is mostly about browser issues, not the language itself. – Mauricio Scheffer Jan 21 at 13:48
show 15 more comments
vote up 4 vote down

Coldfusion

  1. Compile Time for large Flash Forms.
  2. Dynamic Variable Types (Sometimes I hate them.)
  3. Lack of features in CFScript.
  4. CFTable (Can never get it to display right).
  5. The lack of chart types left out of CFChart.
link|flag
1  
Oh god... Cold fusion. Why hasn't it died yet? – Nick Stinemates Nov 12 '08 at 4:10
show 3 more comments
vote up 29 vote down

Ruby has many flaws related to its speed, but I don't hate those. It also has flaws with the community evangelism going overboard, but that doesn't really bother me. These are what I hate:

  • Closures (blocks) have 4 different creation syntaxes, and none of them are optimal. The elegant syntax is incomplete and ambiguous with hashes, and the full syntax is ugly.
  • The community tends to be against real documentation, favoring 'read the code'. I find this childish and lazy.
  • Metaprogramming abuse, particularly in libraries, makes bugs a nightmare to track down.
  • On a related note, pervasive metaprogramming makes a comprehensive IDE difficult, if not impossible, to make.
  • The way block passing to functions is done is silly. There is no reason blocks should be passed outside the parameter list, or have odd special syntax to access (yield). I am of the opinion that blocks should have been given a less ambiguous syntax (or hashes could have used different delimiters; perhaps <> rather than {}), and passing as parameters to methods should have been just like all other parameters.

    object.method(1, {|a| a.bar}, "blah")
    

    These oddities, like the block must be the last parameter passed and passing more than one block is different with longer syntax, really annoy me.

link|flag
2  
I thought that metaprogramming abuse is called "idiomatic ruby" :) – Slartibartfast Jan 10 at 15:27
show 12 more comments
vote up 3 vote down

I have a book exploring all sorts of projects in SNOBOL. The first chapter explores the history and culture around SNOBOL programming and language and spends some time making the argument that a good programmer likes a language not because of its flaws but in in spite of them.

My favourite language is Icon/Unicon. But there are still things that annoy me about it:

  1. It's not well known or all that popular.
  2. It has a much smaller library compared to PHP, Perl, Java, etc. Database access is done via ODBC, which is actually quite annoying.
  3. For all it's otherwise excellentt list handling, I miss PHP's built-in explode() and implode().
  4. It doesn't have a table constant. Lists, yes, tables, no.
  5. It is a compiled (actually translated) language.
link|flag
vote up 5 vote down

VBA (including MS Office IDE):

1) Poor Documentation
2) Poor Error Messages
3) Inadequate Array Manipulation Routines
4) Having to repeat types for DIM statements
5) Won't print in color (have to buy 3rd party addin)

link|flag
1  
@Eric: be a non CS enginneer, install MSOFFICE, and start solving everyday problems while doing your spreadsheets, docs, etc. – jpinto3912 May 29 at 22:18
show 3 more comments
vote up 24 vote down

I'll do PHP as I like it at times and python will be done way too much.

  • No namespace; everything is in a kind of very big namespace which is hell in bigger environments

  • Lack of standards when it comes to functions: array functions take a needle as a first argument, haystack as second (see array_search). String functions often take the haystack first, needle second (see strpos). Other functions just use different naming schemes: bin2hex, strtolower, cal_to_jd

    Some functions have weird return values, out of what is normal: This forces you to have a third variable declared out of nowhere while PHP could efficiently interpret an empty array as false with its type juggling. There are near no other functions doing the same.

    $var = preg_match_all('/regexp/', $str, $ret);
    echo $var; //outputs the number of matches 
    print_r($ret); //outputs the matches as an array
    
  • The language (until PHP6) does its best to respect a near-retarded backward compatibility, making it carry bad practices and functions around when not needed (see mysql_escape_string vs. mysql_real_escape_string).

  • The language evolved from a templating language to a full-backend one. This means anybody can output anything when they want, and it gets abused. You end up with template engines for a templating language...

  • It sucks at importing files. You have 4 different ways to do it (include, include_once, require, require_once), they are all slow, very slow. In fact the whole language is slow. At least, pretty slower than python (even with a framework) and RoR from what I gather.

I still like PHP, though. It's the chainsaw of web development: you want a small to medium site done real fast and be sure anybody can host it (although configs may differ)? PHP is right there, and it's so ubiquitous it takes only 5 minutes to install a full LAMP or WAMP stack. Well, I'm going back to working with python now...

link|flag
1  
I suppose point 1 is implemented in 5.3 :) While param ordering is getting better naming is still poor. I agree with the backward compatability though. – Ross Mar 9 at 21:55
show 8 more comments
vote up 0 vote down

Python: Array part-selection doesn't give you what you asked for.

a[1] gives you one element
a[1:2] gives you one element, not [ a[1], a[2] ]
a[1:3] gives 2 elements

I hate that, but maybe that's just because I mostly work in Verilog.

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

Common Lisp:

  1. Keywords are often too wordy.
  2. Library support is pitiful.
  3. Doesn't work well in OSes that want to handle memory more strictly.
  4. Doesn't have good facilities for interacting with the OS.
  5. The "loop" facility is not well defined, and sure doesn't look Lispy.
link|flag
1  
'loop' might not be lispy, but what's poorly defined about it? – Daniel Cassidy Dec 7 '08 at 2:08
show 1 more comment
vote up 7 vote down

Smalltalk

  • I don't want to develop in java, delphi, c#, or ruby anymore (which is impractical as the main development languages in my company are c#, delphi and java).
  • Left-to-right evaluation.
  • Has a class comment but no method comment (at least in Squeak)
  • No real standard library, lots of differences in details
  • Lack of namespaces
link|flag
1  
Smalltalk made me much unhappier over other languages, that's not nice. – Stephan Eggermont Dec 10 '08 at 12:18
show 2 more comments
vote up 10 vote down

Delphi:

  • IDE is a bit unstable.
  • Code insight is sometimes confused.
  • Debugging is sometimes buggy.
  • Updating several project files can be cumbersome.
  • If starting up when one or more packages are unavailable, the error message is popped several times.
link|flag
2  
All of these seem to be complaints about Delphi the IDE rather than Delphi the language (AKA Object Pascal) – Don Nov 11 '08 at 22:52
3  
Presumably that's because Object Pascal is perfect ;-) – Mark Bessey Nov 11 '08 at 23:42
1  
I'm a bit late to the party, but here goes anyway: - having to write down method signatures twice (interface + implementation) - Unit name is REQUIRED to be identical to the file name. WTF?!? – Martijn Mar 27 at 17:30
show 8 more comments
vote up 300 vote down

English:

  • Inconsistent spelling
  • Multiple-use tokens ("She's said 'Bob's Bob's "own worst enemy."'", e.g.)
  • Swear words are kinda worn out
  • Lack of non-gender-specific pronouns ("he/she", "they" or "it" are the only choices)
  • Shared with Canada et.al.

Add more in the comments if you've got 'em.

link|flag
13  
It lacks a good syntax-checking compiler. – Tom Leys Nov 11 '08 at 23:01
24  
I before E Except after C, or when sounding like A like in neighbor and weigh, unless it's weird. Or science. – Dean Nov 11 '08 at 23:52
18  
English actually does have a second person plural pronoun: "you". 200+ y. ago, the English started using "you" as a respectful "thou" imitating French "vous". Soon they treated everyone respectfully. Then forgot about "thou", so "you" became the only word for both second persons. – Joe Pineda Nov 26 '08 at 23:01
4  
I disgree abot the lackof eror checkng. English, like all human lnagaugse, is higly redndnt/compresble, therfore it contans plnty of err chekng. – Jeffrey L Whitledge Nov 29 '08 at 6:01
8  
Backwards-Compatibility requirements of old libraries has stalled progress on the language's evolution. – too much php Jun 16 at 4:12
show 47 more comments
vote up 47 vote down

C++

  • Far too easy to randomly corrupt memory and create almost impossible-to-find bugs (although, valgrind goes a long way towards fixing this).
  • Template error messages.
  • When using templates it's easy to end up having to include everything in one file, and then get stupid compile times.
  • Standard library is a joke in the modern age (still no threads or network by default?)
  • Lots of nasty little bits of C poking through (in particular, all the conversions between short/int/unsigned/etc..)
link|flag
6  
I agree with the STL, but I will say what is there is pretty good. – Bernard Nov 26 '08 at 19:20
3  
unicode. i do respect ascii's simplicity, but for goodness' sake, we're well into the 21st century now. – wilhelmtell Jan 9 at 7:57
3  
@Kieveli const correctness is actually one of the things i miss most when programming in other languages. particularly the dynamically-typed ones. raii is a big feature i often miss too. – wilhelmtell Jul 13 at 6:36
show 7 more comments
vote up 4 vote down

Groovy/Grails

  1. Duck-Typing
  2. Convention over Configuration, assuming you know the Convention
  3. Everything you hate about Spring
  4. Everything you hate about Hibernate
  5. [Groovy] common operations across collections aren't (but recent releases improve this)
link|flag
vote up 42 vote down

Five things I hate about Java (which presently my favorite language) in no particular order.

  1. As much as I am a fan of Java Generics, there are a lot of oddities that arise from the way it was designed. As such there a myriad of annoying limitations with generics (some of which are the result of type-erasure).
  2. The way Object.clone() and the Cloneable interfaces work is totally broken.
  3. Instead of taking the high-road and making everything an object (a.la. SmallTalk), Sun wimped out created two distinct categories of data-types: Objects and primitives. As a result there are now two representations for fundamental data types and wierd curiosities such as boxing/unboxing and not being able to put primitives in a Collection.
  4. Swing is too complex. Don't get me wrong: there's a lot of cool stuff one can do with Swing but it is a great example of over-engineering.
  5. This final complaint is equally the fault of Sun and those whom have written XML libraries for Java. Java XML libraries are way too complicated. In order to simply read in an XML file, I often have to worry about what parser I am using: DOM or SAX? The APIs for each is equally confusing. Native support in the language for easily parsing/writing XML would be very nice.
link|flag
9  
You forgot about java.util.Date! – TM Dec 9 '08 at 18:59
2  
Also: The "Cloneable" interface doesn't have a "clone()" method. This makes The Cloneable interface an Oxymoron. And since clone() returns an Object, type safety is out the window (there does not appear any attempt made to rectify this even after Generics have been introduced in J2SE 5.0). – Ryan Delucchi Jan 7 at 20:18
4  
Hard to do simple things like open a file and read from it. – Eric Johnson Mar 13 at 18:31
show 7 more comments
vote up 16 vote down

C

  • Socket syntax.
  • No function overloading.
  • C-style strings.
  • Buffer overruns.
  • Cryptic syntax. I don't know how many times I've looked up stuff like atoi, slapped my forehead, and shouted "Of course!"

EDIT: Okay, I could probably come up with more if I resorted to more library code (like I did with sockets, but those are particularly bad), but I already felt like I was cheating for picking on C. So many languages exist only to take the good parts of C and replace the bad that it's kind of like beating a dead horse.

link|flag
9  
What socket syntax? C has no concept of sockets. – Ferruccio Nov 11 '08 at 22:47
1  
Oh, c'mon! You can come up with five. Doesn't pointer arithmetic just suck? :) – brian d foy Nov 11 '08 at 23:02
1  
@Chris Luts: Even back when I was learning plain C (before I knew C++ or any other OO language) I just knew there was something wrong about char arrays. :) – Bill the Lizard Feb 19 at 13:56
show 4 more comments
vote up 2 vote down

I use Java, and my biggest beef is the inefficiency of string operations. when you use the + operator. Seriously, can't the compiler figure out how many strings I'm adding and then generate the StringBuffer stuff in the background for me?

Often code that uses + is more readable than a sequence of StringBuffers operations.

Also, I hate the redundancy between native arrays and the collection framework. The syntax for .toArray() is extremely ugly.

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

PHP:

  • One can never be sure that certain almost common extensions are available on all webservers.
  • tries to be everything in future ( goto, closures, ... )
  • many security risks for unexperienced users
  • more operator overloading would be nice
  • all the poor programmers that don't learn how to make it work properly, and give it a bad name

Nevertheless PHP is the (scripting) language. ;-)

link|flag
show 3 more comments
vote up 21 vote down

Python:

  • Lack of static typing
  • Default argument handling (specifically the fact that you can change the default argument for future callers!)
  • Too many required underscores (constructors must be called __init__)
  • Lack of proper private members and functions (convention just says that most things that start with underscore are private, except for all the stuff like __getattr__ that isn't)
  • Funny syntax for printing to a file (but they're fixing that in Python 3)
link|flag
2  
What I'd like is an option to use static types. – Greg Hewgill Nov 12 '08 at 10:06
26  
If you prefer static typing, why is Python your favourite language? – finnw Dec 7 '08 at 18:09
1  
finnw: Static typing is great for some kinds of programs, and not really needed for other types. I usually don't mind the lack of static typing, but when you need it, it's really nice to have at least the option. – Greg Hewgill Dec 7 '08 at 18:26
show 7 more comments
vote up 30 vote down

Java

  • Generics type erasure (i.e. no reified generics)
  • Inability to catch multiple exceptions (of different types) in a single catch block
  • Lack of destructors (finalize() is a very poor substitute)
  • No support for closures or treating functions as data (anonymous inner classes are a very verbose substitute)
  • Checked exceptions in general, or more specifically, making unrecoverable exceptions checked (e.g. SQLException)
  • No language-level support for literal collections
  • No type-inference when constructors of generic classes are called, i.e. the type parameter(s) must be repeated on both sides of the '='
link|flag
1  
Thank god! Now I will see shit like try{ ... }catch(Exception1 e1, Exception2 e2, java.sql.SQLException e3 ... ){ ... } Hmmm... that's gonna get ugly – Ubersoldat Jan 12 at 0:39
1  
I wouldn't call a lack of destructors a flaw when the language has a GC, and a GC that's gotten better and better with each release. Destructors were missed in java 1.1.8 but not in java 6 because gc is so vastly improved. – Mike Reedell Apr 10 at 11:49
2  
C# fixes all of these except catching multiple exceptions. Generics are reified, destructors are replaced by using/IDisposable, closures are implemented by anon methods and lambdas, exceptions are unchecked, there are collection literals, and there is 'var' to avoid specifying the constructed type twice. – Earwicker May 9 at 22:34
show 8 more comments
vote up 29 vote down

C

  • string manipulation.

Having to deal manually with the string buffers is an error-prone pain. Since so much computing is really moving and modifying strings (computers aren't used quite as much for big number-crunching stuff as people thought they'd be way back when), it's really nice to be able to use managed languages or C++'s string objects to deal with these. When I have to do it in straight C, it feels like swimming in quicksand.

link|flag
4  
Agreed. String manipulation is item 1 through 5 of things I hate about C. – BoltBait Nov 11 '08 at 23:11
1  
strcat to concatenate, but wait... does the destination have enough space... ok, must insert if statement to check... but wait, what if my string is on the heap? Ok, must keep a variable around to keep track of size... And this can go on and on and on... – blwy10 Nov 12 at 14:32
show 6 more comments
vote up 6 vote down

Python:

  • Too slow!
  • list operations don't return the list, so you can't do list.append(4).append(5). (I mean a reference to the same list, not a copy). This is a minor gripe; it's only come up a few times.
  • statements don't return values (if, print, while, for, etc). This is only a problem when dealing with lambdas.
  • lambdas can only be one expression. There's no real need for this restriction, as they are equivalent to functions in every other way. What if I want a button press event which calls two functions? I'd need to create a named function to supply that functionality to an action listener, while doing "lambda: f1(); f2()" would not hurt.
  • you can only put standard a-zA-Z_0-9 as names. Having functions like "true?" and "+" would be great. Of course, this could lead to terrible obfuscation, but I'm not saying we immediately rename all functions to "p@$%3". Which do you find clearer to read: "dec2bin" or "dec->bin"? ("store_results" or "storeResults") or "store-results"?
link|flag
3  
"lambda: (f1(), f2())" is a trick I've used in a few cases. – Joe May 21 at 5:57
show 17 more comments
vote up 26 vote down

C++

  1. Template Syntax
  2. Diamond Inheritance issues
  3. The plethora/lack of standard libraries that modern languages have (though boost comes close).
  4. IOStreams
  5. The syntax used around IOStreams

Python

  1. Spaces are meaningful (sometimes)
  2. underscored keywords
  3. Limited thread support (at least currently)
  4. "self" instead of "this"
  5. Spaces are meaningful (sometimes)
link|flag
20  
You can refer to "self" as "this" is you really want to (although it might be hard for others to follow). "Self" isn't a keyword, and you can name the variable anything you want. – mipadi Nov 11 '08 at 23:49
4  
there you go, I would actually list the meaningfulness of whitespace (especially indentation) in Python as one of its biggest pluses... ;) – Oliver Giesen Nov 12 '08 at 1:54
1  
@Oliver - I agree, but it gets confusing when you mix spaces and tabs. Tab space space is not the same as any number of just spaces. – Tom Leys Nov 12 '08 at 3:12
1  
Personally, if I were to make this list, I'd list "Spaces are meaningful" 3 or 4 times. – Paul Wicks Nov 12 '08 at 8:08
1  
"spaces are meaningful" is one of the best features of python!! p.s. try to run this in an interpreter "from future import braces" – hasen j Dec 5 '08 at 18:05
show 12 more comments
vote up 3 vote down

My language du jour is Java. Here is what I hate about it:

5.) Lack of pointers
4.) Exception catching
3.) The Boolean type
2.) BigDecimal type
1.) C# fanboys and Java fanboys

Boolean can be null. I find this counterintuitive.

BigDecimal is a library and not a language feature. My annoyance with BigDecimal and Exception catching stems mainly from writing test classes that have to jump through a bunch of hoops to get actual work done. I should clarify I'm annoyed by these things, I'm not about to lobby for changes.

link|flag
show 17 more comments
vote up 65 vote down

C# / .NET:

  • Classes should be sealed by default
  • There should be no lock statement - instead, you should have specific locking objects, and there should be methods such as Acquire which return disposable lock tokens. Corollary: there shouldn't be a monitor for every object.
  • GetHashCode() and Equals() shouldn't be in System.Object - not everything's suitable for hashing. Instead, have an IdentityComparer which does the same thing, and keep the IComparer<T>, IComparable<T>, IEqualityComparer<T> and IEquatable<T> interfaces for custom comparisons.
  • Poor support for immutability
  • Poor way of discovering extension methods - it should be a much more conscious decision than just the fact that I'm using a namespace.

Those were off the top of my head - ask me tomorrow and I'll come up with a different 5 :)

link|flag
4  
Sealed by default: inheritance should either be designed into a class (which takes time and limits future options) or prohibited. hashCode/equals: it sucks in Java too. One day I'll write a long blog post about it. Read Effective Java for details of why equals is hard in inheritance chains. – Jon Skeet Nov 11 '08 at 23:37
17  
Sealing by default means that you have thought of every possible reason that someone may want to inherit from your class and you don't think any of them make sense. Sorry, but none of us are that smart. – Ed Swangren Nov 12 '08 at 1:08
16  
In that case I'm not smart enough for you to derive from my code: because I can't predict what future changes I might make which could break your code. That's a very significant problem, IMO. Sealing the code is more restrictive, but leads to more implementation freedom and robustness. – Jon Skeet Nov 12 '08 at 2:38
5  
I can't believe no-one mentioned the "goto case" syntax, I hate that one! – Aistina Dec 9 '08 at 19:07
2  
@Matt: To me, that says that HttpContext should implement a suitable interface, not that it should be unsealed. Overriding arbitrary methods of classes without understanding whether internally one of those methods would normally call another is just replacing one problem with a different one, IMO. – Jon Skeet Jun 25 at 20:56
show 33 more comments
prev 1 2 3 4

Your Answer

Get an OpenID
or

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