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

1 2 next
vote up 53 vote down check

In Java, calling a static method via a reference. My favourite example:

Thread t = new Thread(someRunnable);
t.start();
t.sleep(1000); // This doesn't do what it looks like...

It makes the current thread sleep, not the newly created one. Thread.sleep is a static method and only ever affects the calling thread - but this snippet makes it look likes it's telling a different thread to sleep.

link|flag
4  
@Chris: Will edit. @smo: C# doesn't have this problem. You'd have to call "Thread.Sleep()" which makes it obvious that you can't call it "on" a particular thread. There's no benefit in calling static methods via references - it just confuses things. – Jon Skeet Nov 23 '08 at 23:01
show 14 more comments
vote up 3 vote down

In Python, multiple wild card imports:

from songsmith import *
from web import *

@publish
def create_bad_song(uri):
    return add_soulless_backing(get(uri))

It makes it difficult to find the source of a name when reading the code. Did get come from songsmith or web?

It is much better to say something like this:

from songsmith import add_soulless_backing
import web

@web.publish
def create_bad_song(uri):
    return add_soulless_backing(web.get(uri))
link|flag
vote up 1 vote down

VB.NET has several "features" to maintain backward compatibility with older VB 6 code. Instead of using these "features" you should probably write your code to do things the .NET way.

link|flag
vote up 3 vote down

eval in the vast majority of cases in any language that has it (MATLAB, Javascript, etc). There are exceptions like parsing JSON if the input has been properly checked for validity.

It usually presents a security risk and there are often other ways to solve the desired problem. In MATLAB and Javascript there are facilities to get dynamic field names, e.g. if I have a structure S and it has a member somefield, and I have a variable containing the string of a field name v = 'somefield', then in MATLAB I can access this field with S.(v) and in Javascript I can access this field with S[v]. No need to call eval() in either place.

link|flag
vote up 1 vote down

'extern' keyword in C.

C's linker doesn't check if the functions (or variables) match. The function is simply called or the variable used.

A contrived example,

// file1.c written by programmer A.
extern int function_b( void );
int num;
num = function_b();

// file2.c written by programmer B with no knowledge of programmer A.
static int global_b;
int function_b( void ) { return global_b; }

Now suppose programmer B changes function_b() to take a parameter. Or return an uint64_t instead of an int.

// contrived new file2.c
static uint64_t global_b;
uint64_t function_b( int caller ) 
{ 
    LOG_CALLER(caller);
    return global_b; 
}

We now have a corrupted stack and/or corrupted memory because programmer A's call to function_b() doesn't know function_b() has changed. The C compiler/linker doesn't check.

I see externs in cases where programmers take shortcuts. Instead of using the proper #include file, it's simpler to slap an extern into the code and hope for the best.

link|flag
1  
Don't you need "extern" if there is a global variable in an application that is shared between files? Although it's not good practice in general, there are occasions where it is important. (esp. on embedded systems where the global variable represents a resource) – Jason S Dec 24 '08 at 16:04
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 -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 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 7 vote down

SELECT *

It may be fine for ad-hoc queries, but should never be used in actual code.

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

JavaScript one: never prototype against object.

link|flag
vote up 1 vote down

Yup. The With statement is a throwback to Pascal, where it wasn't so harmful. It should have been removed from Delphi or reworked. Personally I don't agree with "with" statements (Pascal or Vb) they're sugar are are often misused e.g.

  • You find yourself glancing (or worse paging) up more than once trying to figure out which object you're "With"
  • You find a nested With (don't get me started).
  • You find a block of old well maintained code, 20 lines long in a with block and - wait for it - the "with" object is null and is not used by any of the code (saw this about 2 weeks ago and laughed out loud - it was that or weep)

Other than "I'm not with with"

  • Option Strict and Option Explicit MUST ALWAYS BE ON in Vb (I don't care if you can roll feature X in 30 minutes because it relies on late bindings where as it'll take a week if you've to write and implement a heap of interfaces because SWITCH THEM OFF AND YOU WILL LOOSE A FINGER)
  • Don't Dim x as new Y in Vb6 (actually, don't use any VB6 feature if you can get away with it)
  • C/C++/VB: Don't use Static variables in procedures
  • C++ Don't use old ansi string handling LEARN THE STL

I known there's more rattling around in the back of the ould brain, I'll update this as I think of 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 VB.NET, I avoid using Parse like Decimal.Parse.

I use TryParse instead.

link|flag
vote up 1 vote down

I don't think any language feature should never be used, but some of them must be used very very carefully.

In C# I think one of that features is the new modifier for non-virtual method overriding. If the programmer does not understand exactly what is happening, it can be dangerous.

class Base {
    internal virtual void Foo() {
        Console.WriteLine("Base.Foo");
    }
    internal void Bar() {
        Console.WriteLine("Base.Bar");
    }
}

class Derived : Base {
    internal override void Foo() {
        Console.WriteLine("Derived.Foo");
    }
    internal new void Bar() {
        Console.WriteLine("Derived.Bar");
    }
}

class Program {
    static void Main(string[] args) {
        Base b = new Derived();
        b.Foo();
        b.Bar();
        Derived d = new Derived();
        d.Foo();
        d.Bar();
        Console.ReadKey();
    }
}

/* Prints:
 * 
 * Derived.Foo
 * Base.Bar
 * Derived.Foo
 * Derived.Bar 
 */

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 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 2 vote down

Never rely on the compiler to initialize a variable. For example, never assume that integers are initialized to 0 or pointers to null. It may work fine in the current compiler you are using but could work differently when you port your code to another compiler. And, when initialization doesn't work as you expect, it will likely create a subtle and difficult to detect bug.

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

Variable variables in PHP.

$foo = 'Hello World!';
$bar = 'foo';

// prints Hello World
echo $$bar;

Makes debugging complicated, especially when they are combined with calling functions by name.

function hello()
{
    return "Hello World!";
}

$foo = 'hello';
$bar = 'foo';

// prints 'Hello World' too
echo $$bar();
link|flag
1  
Eh. In other languages those would be called pointers or references. No big deal. Some programmers would rather die if their language didn't support calling functions by reference. – Barry Brown Nov 24 '08 at 7:51
1  
So $bar is a reference to $foo. $$bar dereferences $bar and points to whatever $foo points to; in this case 'Hello World'. What's the issue? – Barry Brown Nov 25 '08 at 0:20
1  
Huh, I didn't know PHP had this. I don't see anything wrong with that, function pointers can be extremely useful. – dancavallaro Dec 24 '08 at 16:26
1  
It's not the same as a pointer, because $bar is a string in its own right, too (at least in PERL, where I'm guilty of using this, but only once ... :P ) – drhorrible Dec 28 '08 at 3:05
show 2 more comments
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

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

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 2 vote down

with in Javascript. It's a scope obfuscator/polluter and performance killer.

link|flag
vote up 2 vote down

I don't think there's many cases of when something should truly never be used, especially something so benign as a "with" statement (especially if it relies on non-idempotent expressions with side-effects).

Most of the issues mentioned amount to taste in formatting and syntactic sugar.

The exception may be if a feature is deprecated and replaced with an equivalent due to e.g. security issues. Even then, if you're dealing with an existing code base, it may not be worth it to go back and change to use the new features.

Some low level features that seem like security problems may be needed to communicate with other components of the system in rare cases (e.g., exec, ActiveX controls, inline assembly, p-invoke, etc). If your application doesn't need to do this, then obviously, don't use it, but it's there for those who do, and they should use it carefully. But saying "never" is way too general.

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

Never omit curly braces when the target statement is on the next line

OK:

if(foo) potato

OK:

if(foo) {
  potato
}

NEVER:

if(foo)
  potato

when there's other stuff going on, it's too easy to miss that potato depends on foo.

link|flag
1  
Personally I never (well, hardly ever) use the first construct. Writing all your if statements with brackets may look anal, but I've spent more hours debugging other people code where hanging ifs have caused subtle errors than I care to remember. – Cruachan Nov 23 '08 at 18:41
1  
I agree with Cruachan here. The first construct is evil and the later two are OK (including the third) – Nemanja Trifunovic Nov 23 '08 at 22:39
2  
The "to brace or not to brace" argument is heavily dependant on how well the code is indented. – staticsan Nov 24 '08 at 2:13
1  
I'd say that if your code is unreadable or error prone without indentation, it ought to be part of the language (F#, Boo, YAML). – Benjol Nov 26 '08 at 13:57
show 10 more comments
vote up 5 vote down

I won't say you should never use it (I am not dogmatic) but I try hard not to use automatic conversion of some values to booleans (NULL as false in C, nil as false in Lua, undefined or null as false in JavaScript, etc.).
Ie. I prefer to do an explicit comparison against the value and reserve tests like if (foo) to pure booleans.
It results in slightly more verbose code, but might avoid surprises...

In the same spirit, even though I would indulge in an occasional while (*p++ = *q++), which is at least a well known pattern, I would avoid constructs like if (a = b) even if it has the intended behavior...

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

Another PHP one: magic quotes. It's a terrible idea, and you still see lots of web apps that use it. Any time you type " and it turns into \", someone's probably got magic quotes turned on.

link|flag
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 -6 vote down

C++: protected inheritance

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

I find Python's backtick repr quite nasty (and especially since there are better ways to do it.)

`some_var` == repr(some_var)     # yikes Batman (gone in 3.0 - thanks Greg)

And then there is this implicit string concatenation thing:

>>> 'a''b''c'     # holy moly Robin
'abc'
link|flag
show 4 more comments
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.