vote up 20 vote down star
7

A recent post about the 'with' statement in Delphi - which in practice I never use because it trades clarity and ease of debugging for superficially 'cleaner' looking code got me thinking; what other language features, in any language, do you think should never be touched? - or at least avoided where at all possible?

The classic example of this would be the COBOL ALTER statement, which dynamically rewrites the executing code to change the destination of a GOTO. Use of ALTER was just about a sackable offense in every COBOL shop I ever worked in.

My supposition would be that as language design is better understood nowadays there may be fewer of these 'features' coming through - but is that true of the newer more exotic paradigms such as the functional programming languages?

flag

46 Answers

prev 1 2
vote up 0 vote down

In PHP, never use exec or even passthru. Of course, most languages have some sort of contemporary to these functions.

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

I can think of very few reasons to use exception specifications in C++:

void func() throw()
{

}

(but of course, there really are no nevers)

link|flag
vote up 0 vote down

Bitfields in C. They're not portable, and they can cause concurrency problems (race conditions) when shared between threads.

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

Variable argument lists (...) unless you are writing some low level system API. In most cases, there is some cohesive intent for these lists so they're better served with a class that can take a range of things and grow its own list if necessary.

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

Personally in Java I do not like do while loops, I seem to be able to use While and For loops just fine, but I wouldn't say you should NEVER use them.

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

Don't use any of the new C# 4.0 features... it's like coding with "option explicit" turned off in VB. :) I joke, but seriously, some of these new features scare the crap out of me from a maintenance point of view.

link|flag
vote up 0 vote down

In Java, it is possible to use generic types without to inform the generic parameters:


public class MyList<T> {
//...
}

public class Main {
    public static void main(String[] args) {
        MyList<String> a = new MyList<String>(); //OK
        MyList b = new MyList(); //OK, but should not
    }
}
link|flag
show 1 more comment
vote up 0 vote down

All forms of popular non-explicit lazy-up-the-stack error handling. People have trouble seeing the aftermath of their use is no different than the shunned GOTO command. Proper coverage is impossible to verify, perfect way to leak all manner of resources (even in garbage collected environments) and contrary to wildly popular opinion stack traces or low level messages simply passed up are ususally chunk full of nonsense which are not in any way useful to most developers let alone end users.

link|flag
vote up 0 vote down

JavaScript one: never prototype against object.

link|flag
vote up 0 vote down

In VB.NET, I avoid using Parse like Decimal.Parse.

I use TryParse instead.

link|flag
vote up 0 vote down

All I can add is: try to avoid platform specific APIs (Windows programmers generally don't think much about it, rather Windows is meant for this purpose). Portability is one thing you should keep in mind (as far as you can).

Next thing I can see is scalability. Make sure you don't rely on hard and fast numbers and try to keep your design flexible and agile.

Then make sure your code is understandable. Avoid magic numbers, proper documentation and naming are essential.

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

Never use autoboxing introduced in Java 1.5.

Integer i = getNumber(); // assume this method returns null
int j = i; // boink

There's really no good use for autoboxing unless you don't understand or don't care about the difference between objects and primitives - and then you better stay away from it anyway.

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

In Python, you should avoid running a bunch of methods on one line. I still do it, though.

"  hello\n\n".upper().replace('o','0').lstrip().rstrip()[::-1]
link|flag
vote up -2 vote down

C interprets nonzero values to signify true and zero values to signify false. You shouldn't have to rely on this feature any more.

Edit: Number of people are not buying my disliking nonzero-as-true. What about this?

if (status = UNDER_ATTACK) {
    launch_nuclear_missiles();
}

or this?

if(x & 2 == 1)
{
    launch_nuclear_missiles();
}
link|flag
show 9 more comments
vote up -3 vote down

Multiple Inheritance in C++, of course. There's a good reason it's been dropped in C#/java.

(Though "every rule does has exceptions, including this one").

link|flag
show 7 more comments
vote up -6 vote down

C++: protected inheritance

link|flag
show 8 more comments
prev 1 2

Your Answer

Get an OpenID
or

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