up vote 10 down vote favorite
3
share [g+] share [fb]

It's easy to think of features to add to a language. What feature would you cut from a language, and why?

Douglas Crockford says don't use JavaScript's "with" statement. What are the hazard areas in other computer languages? What features have you seen get in the way of software engineering?

link|improve this question
show 3 more comments
feedback

closed as not constructive by Bill the Lizard Oct 24 '11 at 18:21

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.

34 Answers

1 2
up vote 18 down vote accepted

In C/C++/Java:

Numbers starting with 0 are assumed to be octal. So 034 means decimal 28. Makes it too easy to specify octal values by mistake, since you might think you want to add a zero to line up a group of numbers.

Also, switch statement flow-through. If a case doesn't terminate with a break statement, it automatically flows through to the next case.

link|improve this answer
1  
I TOTALLY agree with the octal nonsense. I ran into that just the other day. Other bases require a 'b' or a '0x', but Octal starts with 0. It's not even 'O' (the letter). That makes it far too easy to accidently use octal. That said, I like the switch statement. – MBCook Jun 7 '09 at 17:51
1  
I like fall through (I always though it was fall not flow). But I would add an explicit keyword. Thus stopping accidental fall through. – Loki Astari Jun 14 '09 at 15:56
3  
I'd vote instead for making fall-through be the exception, not the default. 99.9% of the time each case ends with break. How about omitting the break and indicating which cases fall through with "continue"? – Barry Brown Jul 1 '09 at 18:56
2  
The python developers agree with you, too. 0o is the prefix for octal numbers in python3. – alberge Aug 6 '09 at 0:30
show 7 more comments
feedback

Checked exceptions in Java.

link|improve this answer
1  
On the contrary, I think checked exceptions are important. Plenty of people misuse them however, and you end up with catch statements littered everywhere. – Adam Batkin Aug 6 '09 at 0:09
1  
Why are checked exceptions bad? They augment static typing. If someone is just ignoring every exception they are a bad developer, an exception means something went wrong, you have to handle it in order for your code to be robust... – Longpoke May 30 '10 at 3:39
show 1 more comment
feedback

Bad type systems need to go:

<?php echo (3 == '3 little pigs') ? 'True' : 'False'; ?>

I shake my head when I see this return 'True'.

link|improve this answer
2  
It's a typeless language. Why complain? You can always use === – jmucchiello Sep 6 '09 at 8:49
1  
"Weak typing considered harmful". – Longpoke May 30 '10 at 3:38
show 2 more comments
feedback

Overloading of operator comma in C++. Some would say all operator overloads but some overloads are useful. Overloading operator comma is just a nightmare waiting to happen.

link|improve this answer
1  
Although Blitz++'s use of overloaded commas is pretty cool - c2.com/cgi/wiki?OverloadingCommaOperator – Josh Kelley Jun 10 '09 at 16:35
show 3 more comments
feedback

The "switch" statement in Java. It was copied nearly intact from C, including the break/fallthrough nonsense, and it's just awful.

link|improve this answer
7  
Fallthrough is not nonsense; I've found it quite handy in some situations. – zvrba Jun 7 '09 at 18:09
3  
It is handy, but it make maintenance difficult. When I see it used intentionally, it's often commented with apologies. – Nosredna Jun 7 '09 at 18:15
11  
Actually it would have made more sense to make break the default and require a fallthrough keyword. – jmucchiello Jun 7 '09 at 18:49
show 7 more comments
feedback

I hate how JavaScript adds a semicolon to the end of lines if you don't do it.

link|improve this answer
feedback

Not requiring {}'s for if / for's etc in C / C++

if( true )
{
     dostuff();
     return 1;
}

Without braces:

if( true )
    dostuff():
    return 1;

Will still work, but when you go to add more code below you will run into problems.

link|improve this answer
2  
Actually, those are exactly the same. – Dour High Arch Jun 10 '09 at 22:22
2  
Less commonly hit now that debuggers are better than printf, but I'm still picky about this one. Without {}, chaos rapidly ensues. A quick literally one-line (as in, fits on the same line as the if) that "couldn't possibly" need more body might be ok, but really, why chance it? It's only a few more characters, and it's a lot more comfortable. – Kim Reece Jun 10 '09 at 23:24
show 3 more comments
feedback

Magic quotes in PHP (to be deprecated in PHP 6).

link|improve this answer
4  
Deprecated in 5.3. Removed in 6. It's already gone. us2.php.net/manual/en/… – jmucchiello Jun 7 '09 at 14:57
show 3 more comments
feedback

Option Strict Off in Visual Basic .NET.

mutable local "variables" in F#.

*See this question

link|improve this answer
1  
Option Strict Off is great for a good bit of COM work...so great, in fact, that C# 4 gets dynamic. That said, the fact that Option Strict allows both narrowing conversions and late binding is a shame. Implic narrowing conversions are always bad, but late binding can be good. I wish they'd seperate the 2. – Mark Brackett Jun 7 '09 at 16:43
show 2 more comments
feedback

In Perl, inconsistent rules on using parenthesis.

When you print, you can use parenthesis or not:

print("Hello, world!\n");

print "Hello, world!\n";

But if you print to a filehandle, you can't use them:

print FILE "Hello, world!\n";

(This also brings up the awkward syntax for printing to files - look, Ma, no comma! - but that's not what this post is about.)

However, flow control statements must have parenthesis:

while(1) {

...unless you use postfix notation:

dosomething() while(1);

dosomething() while 1;

Personally, I'm a fan of dropping the parenthesis altogether, except when you need them to resolve ambiguities (which is what parenthesis are for) and typing:

while 1 {

Because we all know that anything after the while and before the { is the condition.

link|improve this answer
show 2 more comments
feedback

Protected implies package private access in Java.

link|improve this answer
feedback

Silent/Implicit destructive conversions between data types in C/C++.

int i = 5.6; // well-formed

link|improve this answer
feedback

in SQL (especially in PL/SQL): INSERT statement without column list. Breaks when a new column is added to the table.

link|improve this answer
feedback

extract() in PHP. A horrible, horrible function.

link|improve this answer
show 1 more comment
feedback

The "functional" parts of Python, specifically zip/map/reduce/filter/lambda.

They have their uses (and I wouldn't actually suggest they be removed), but always seem to be mis- or over-used, instead of slightly more verbose, Python'ish methods.

link|improve this answer
5  
It seems to me that most people who advocate against functional programming just don't really understand it. Map/reduce is an extremely useful operation (see Google). – Zifre Jun 7 '09 at 16:15
2  
I don't think he's arguing against it--just saying that Python shouldn't embrace it. Or at least that's how I read his answer. – Nosredna Jun 7 '09 at 16:41
show 1 more comment
feedback

From C, bitfields, because they aren't endian clean, and technically are even compiler dependent (though in practice, it tends only to be endian differences that you actually run into.)

link|improve this answer
show 3 more comments
feedback

In .NET, Try / Catch needs a re-think. It's too easy to hide code from yourself and create circumstances where things don't do what you think they should.

Shamelessly stolen from http://www.joelonsoftware.com/articles/Wrong.html , but its stuck with me.

link|improve this answer
show 1 more comment
feedback

Java: maintaining backwards compatibility at all costs. It would free the designers and implementors from a huge burden and allow the language to evolve more gracefully.

link|improve this answer
show 1 more comment
feedback

register_globals in PHP

link|improve this answer
2  
Is it fair to pick a language feature that is already being removed from the language? PHP 6 removes that feature. – jmucchiello Jun 7 '09 at 14:55
show 1 more comment
feedback

In SQL:

select *
link|improve this answer
2  
SELECT * FROM table WHERE 1=0 is useful for portably obtaining a list of column names. – anon Jun 7 '09 at 15:01
3  
Not portably there aren't, unfortunately. – anon Jun 7 '09 at 16:07
10  
But this is very handy to have a quick look at a table content, no ? I use it every day. – Sylvain Jun 7 '09 at 16:08
1  
Why? SQL sucks; specifying every column sucks ten times more! – alamar Jun 8 '09 at 10:52
show 5 more comments
feedback

In C#:

The goto case statements.

link|improve this answer
1  
C++ style; case 0: case 1: case 2: Console.WriteLine("0 to 2"); break; – Aistina Jun 7 '09 at 22:00
show 1 more comment
feedback

The C++ export keyword. Because it seems to be of very limited use, and because Herb Sutter says so.

link|improve this answer
feedback

Java, and definitely container managed persistence EJBs.

link|improve this answer
feedback

The comma operator in C. Guess what this does:

SomeFunction(1, 2, 3);
link|improve this answer
3  
Calls SomeFunction with three arguments, duh. – Mike Daniels Aug 6 '09 at 0:23
feedback

In C++:

  1. local functions declarations (if only one allowed, this will be this one)
  2. goto
  3. macros
link|improve this answer
feedback

goto statement in c/c++

link|improve this answer
7  
Useful for certain types of error handling and for implementing state machines. – anon Jun 7 '09 at 14:58
1  
Agreed. Less necessary in C++, but very useful in C. – HVS Jun 7 '09 at 16:13
show 1 more comment
feedback

Another vote for checked exceptions in Java. If you include libraries are part of the language, I would have 100,000 more things to say ;)

link|improve this answer
2  
I'm not a Java guy, so can you tell me what's wrong with checked exceptions in Java? – Nosredna Jun 7 '09 at 15:04
show 1 more comment
feedback

In C# and VB.NET :

I would remove XML Comments.

Problem : they are often quite messy on screen and pretty hard to maintain. I know it can be really handy for third-party developers and for Microsoft itself, but for the in-house projects I worked on (banking, insurances), it was really overkill and most comments were anyway useless (as before) or outdated. (Maybe Microsoft and 3rd-part developers could use a special edition ?)

Since it have been widely accepted that XML Comment were good, developers spend a lot of time juggling with XML attributes (and generating cool chm documents that no one ever read) and a little less time writing comments...

We were very happy to get Code Behind to seperate html from code. How could adding XML to code would be a better idea ?

:o)

link|improve this answer
3  
It's not really a feature of the language, just don't use them if you don't like them. – Zifre Jun 7 '09 at 16:13
feedback

In C#, using.

When I first used it for consuming an ASMX based service, I thought it was great. But then I tried using it to consume a WCF service and discovered that there is a problem if the service throws an exception before it is completely set up in the using() clause, Dispose() still gets called on the invalid object and will throw another exception that masks the original exception.

Here is a good explanation http://blogs.msdn.com/salvapatuel/archive/2007/04/25/why-using-is-bad-for-your-wcf-service-host.aspx

link|improve this answer
4  
Just because using does not work very well due to a poor implementation in WCF should not overlook how useful it is in other parts of .NET – Kev Hunter Jun 10 '09 at 21:44
1  
Yeah, using is generally a great construct imo. – Ed S. Jun 10 '09 at 23:32
feedback

Array covariance in C# (and in .Net generally).

link|improve this answer
feedback
1 2

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