vote up 19 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 50 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
3  
@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. – Tony the Pony Nov 23 '08 at 23:01
show 14 more comments
vote up 28 vote down

In C:

  • Taking advantage of the commutative property of array indexing to swap the array name and the index:

    int array[5];
    3[array] = 0;
    
  • Using the preprocessor to try to turn C into another language:

    #define IF if (
    #define BEGIN {
    
  • The register keyword, which at best is likely to be ignored, at worst it will make performance worse, and in either case you lose the ability to take the address of your variable.

  • The auto keyword, simply no need to use this.

  • More of a library issue than a language feature but the gets() function should never be used.

link|flag
show 5 more comments
vote up 27 vote down

You should always use Option Explicit in Visual Basic (i.e.: you should never use implicit variables).

link|flag
1  
I think you should also be using Option Strict also. It takes a little more typing to cast when needed, but can prevent a lot of bugs. – Kibbee Nov 24 '08 at 0:33
show 2 more comments
vote up 17 vote down

The only thing that comes to mind are GOTO statements :)

link|flag
2  
I like to use goto in order to have a single point of return from C functions that need to do some clean-up before returning, rather than repeating the clean-up before each return statement. – divideandconquer.se Nov 23 '08 at 12:13
show 13 more comments
vote up 17 vote down

I think no language feature should never be used. It's just a matter of knowing when and how to apply each feature. Of course there are features you almost never would want to use, but can still have their place in certain contexts.

Well, as every rule has to have at least one exception, here's one, PHP related:

  • Having register_globals set to on should never happen :-)
link|flag
2  
I think magic_quotes_gpc is a million times more evil than register_globals. At least you can code around register_globals, but magic quotes are right there staring you in the face, laughing at you as they corrupt all your input. – Ant P Dec 6 '08 at 2:57
show 5 more comments
vote up 17 vote down

You should never do using namespace std; in a header file in global scope in C++.

And you should be shocked if you see using namespace std; in global scope. Never do it, it throws away the names scope separation gained using namespaces.

link|flag
show 5 more comments
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 13 vote down

Global Variables.

link|flag
1  
A static class is just a global in disguise. It has all the same problems and advantages. – Jules Dec 24 at 16:26
show 6 more comments
vote up 12 vote down

Never use the C / C++ language feature of chaining code in a switch statement by appending code to a previous switch case:

OK -

switch (x) {
  case 1:
  case 2:
  case 3:
    ...
    break;
  case 4:
    ...
    break;

  }

Evil -

switch (x) {
  case 1:
  case 2:
  case 3:
    ...
  case 4:
    ...  // Add to the 1,2,3 case here
    break;

  }
link|flag
1  
I might have uses for this construct, actually, but I always document the fallthrough. – PhiLho Nov 23 '08 at 17:44
show 15 more comments
vote up 10 vote down

You should never write Perl code without:

use warnings;
use strict;

Also, you should never use a JAPH in production code. Those are strictly for use in .signature files and golf. Their misuse elsewhere is, IMHO, one of the main reasons for Perl's reputation as a "write-only" language.

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

SELECT *

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

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

In C# there are a number of caveats, e.g.

Never lock on a value type - the lock keyword prevents you from doing this, but if you call Monitor.Enter() directly, you'll be locking on a boxed instance of the value. Fortunately when you try to call Monitor.Exit() on a boxed value, you'll get an exception.

Never lock on a literal string. In C# literal strings are interned for the entire application. Thus local strings, strings in different AppDomains etc. are all shared. This could lead to weird deadlock issues.

Be very careful with finalizers and try to avoid them if possible. One problem: an unhandled exception in a finalizer will take down the entire process.

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

I agree with Vinko Vrsalovic. And my exception is the Delphi With statement. The only time I used it was to create a test set for the delphi frontend of my metrics tool.

The with statement has a very big "I want to shoot myself in the foot" factor. Which is fine if you are the only developer, but in a team it can be very nasty.

Maybe there should be a compiler option that gives warnings if with statements are encountered ;-).

link|flag
vote up 3 vote down

It's not a language feature, but a compiler option that you should never use.

javac -nowarn myApp.java
link|flag
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 3 more comments
vote up 2 vote down

In C#, extern aliases. These allow you to cope with the situation where you have two different assemblies both containing a type with the same name, including namespace, and you want to refer to a particular one of them. Avoid wherever possible.

EDIT: Just to be clear, this isn't a fault in the language. The feature allows you to get out of otherwise intractable situations. It's just a feature you don't want to have to use.

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

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

link|flag
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 2 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 2 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

In C#, you should (almost) never use [assembly: ComVisible(true)] in your AssemblyInfo.cs. It is far too easy to generate wads of COM coclasses and interfaces you're not even aware of. After all, FxCop itself considers it bad practice and recommends specyfing the [ComVisible] attribute on specific classes and interfaces explicitly.

link|flag
vote up 1 vote down

I cannot find a good use for the Shadows keyword in VB .NET.

Shadows is the same as declaring a method with no modifiers, which VB's compiler doesn't otherwise allow. It creates a new name, effectively blocking all all of the overloads with that name in the inheritance hierarchy. I don't think there is a C# equivalent - for example, C#'s new is not equivalent, as it targets the hidebysig IL construct, like VB's Overloads.

If you only have one overload when you use Shadows, the behaviour matches Overloads. But maintenance developers will find out that new overloads are also hidden!

What makes this worse is that Shadows is the default. I think this may be because of VB's way of resolving an overloaded method. Unlike C#, the VB compiler does a depth-first analysis of the entire inheritance chain. Having Shadows as the default prevents base type changes modifying the behaviour of your existing code. I suppose this is a necessary evil in a world where you may not be able to control base type behaviour.

link|flag
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 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 at 3:05
show 2 more comments
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 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 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 at 16:04
show 1 more comment
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
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.