vote up 8 vote down star
4

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?

flag
show 3 more comments

33 Answers

1 2 next
vote up 14 vote down check

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|flag
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 at 17:51
1  
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 at 18:56
1  
The python developers agree with you, too. 0o is the prefix for octal numbers in python3. – alberge Aug 6 at 0:30
show 6 more comments
vote up 17 vote down

Checked exceptions in Java.

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

Protected implies package private access in Java.

link|flag
vote up 4 vote down

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

link|flag
4  
Deprecated in 5.3. Removed in 6. It's already gone. us2.php.net/manual/en/… – jmucchiello Jun 7 at 14:57
show 1 more comment
vote up 0 vote down

goto statement in c/c++

link|flag
6  
Useful for certain types of error handling and for implementing state machines. – Neil Butterworth Jun 7 at 14:58
show 1 more comment
vote up 0 vote down

register_globals in PHP

link|flag
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 at 14:55
vote up 0 vote down

I've heard people say that the ternary if

(exp) ? (exp) : (exp)

may lead to confusing/unreadable code and shouldn't be used.

link|flag
19  
I just love ternary ifs. – Arnis L. Jun 7 at 15:04
2  
I believe we should not confuse bad practices with bad language/platform design. If one throws tons of expression inside the ternary operator its not necessarily a problem with the language. – Ionut G. Stan Jun 7 at 15:05
2  
@Christo, you can use the ternary operator in places where if-else wouldn't be allowed, so it's more than just shorthand. – Kevin Jun 7 at 17:39
show 8 more comments
vote up 8 vote down

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|flag
1  
Although Blitz++'s use of overloaded commas is pretty cool - c2.com/cgi/wiki?OverloadingCommaOperator – Josh Kelley Jun 10 at 16:35
show 2 more comments
vote up 1 vote down

In SQL:

select *
link|flag
2  
SELECT * FROM table WHERE 1=0 is useful for portably obtaining a list of column names. – Neil Butterworth Jun 7 at 15:01
3  
Not portably there aren't, unfortunately. – Neil Butterworth Jun 7 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 at 16:08
show 6 more comments
vote up 4 vote down

Option Strict Off in Visual Basic .NET.

mutable local "variables" in F#.

*See this question

link|flag
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 at 16:43
show 2 more comments
vote up 0 vote down

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|flag
2  
I'm not a Java guy, so can you tell me what's wrong with checked exceptions in Java? – Nosredna Jun 7 at 15:04
show 1 more comment
vote up 0 vote down

In C#:

The goto case statements.

link|flag
1  
C++ style; case 0: case 1: case 2: Console.WriteLine("0 to 2"); break; – Aistina Jun 7 at 22:00
show 1 more comment
vote up 0 vote down

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|flag
3  
It's not really a feature of the language, just don't use them if you don't like them. – Zifre Jun 7 at 16:13
vote up 1 vote down

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|flag
4  
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 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 at 16:41
show 1 more comment
vote up 0 vote down

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|flag
3  
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 at 21:44
1  
Yeah, using is generally a great construct imo. – Ed Swangren Jun 10 at 23:32
vote up 8 vote down

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

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

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

link|flag
vote up 2 vote down

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

int i = 5.6; // well-formed

link|flag
vote up 3 vote down

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

link|flag
vote up 6 vote down

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

link|flag
vote up 15 vote down

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|flag
2  
It's a typeless language. Why complain? You can always use === – jmucchiello Sep 6 at 8:49
show 2 more comments
vote up 2 vote down

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|flag
show 2 more comments
vote up 1 vote down

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

link|flag
vote up 1 vote down

Java, and definitely container managed persistence EJBs.

link|flag
vote up 0 vote down

null pointers/references, in pretty much any language that has them.

link|flag
vote up 3 vote down

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|flag
show 2 more comments
vote up 2 vote down

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|flag
vote up 1 vote down

The comma operator in C. Guess what this does:

SomeFunction(1, 2, 3);
link|flag
1  
Calls SomeFunction with three arguments, duh. – Mike Daniels Aug 6 at 0:23
vote up 3 vote down

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|flag
2  
Actually, those are exactly the same. – Dour High Arch Jun 10 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. – feonixrift Jun 10 at 23:24
show 3 more comments
vote up 1 vote down

Not a true language feature but, I would get rid of /* */ comments in C++ and C# as code in them shows up in searches without an indication that it is not used.

I would also get rid of most conditional compilations within a file in C++ - many times the code can be structured better to get the same effect.

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.