vote up 22 vote down star
6

What programming or naming conventions have you come across that really rub you the wrong way?

For those that aren't aware, in C# we can wrap blocks of code with a #region directive, which allows you to collapse these blocks in Visual Studio for readability.

So the convention on this team is to wrap all combinations of access modifier in their own region. Every time I open a file I'm presented with something like:

+ #region private constants
+ #region private members
+ #region private statics
+ #region public properties
+ #region static constructor
+ #region private constructor
+ #region public properties
+ #region protected overridden methods
+ #region internal methods
+ #region private methods

Well that's great, but where's the method that maps the message response onto our object? Is it an internal method, or a public one? Why does the private members region only have one member, turning one line of code into three? Why add a region to describe something that is self descriptive?

Maybe I'm just having a bad day...

flag
1  
@Ed, even in VS2005 in the search box you can choose to "Search inside of hidden text", thats exactly what its for. – AviD Feb 26 at 6:58
1  
hate #regions too, they must help cluttered minds. – Kenny Mar 26 at 9:36
show 10 more comments

40 Answers

1 2 next
vote up 39 vote down check

I had to work on a program recently where the developer's personal convention was that every variable name should be 4 characters long:

var cnam // customer name
var ccrt // customer credit rating
var olnm // order line number
...
link|flag
show 7 more comments
vote up 19 vote down

I really hate the m_ and s_ conventions for member/static variables.

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

i actually like this naming convention you use although i make it a bit simpler (just ctor, public, private, protected). when opening the file i usually under which access modifier the method i'm looking for is under even if i don't know it full name so it shortens my search.

for class non public variables i use _ prefix. for public static and non static variables i use ThisIsMyField.

link|flag
vote up 33 vote down

Hungarian notation always makes me think evil thoughts. I understand the reasoning behind it, but not all who use it do. Even with the proper prefix usage, I still find it baroque.

link|flag
2  
Use SaveButton and TextLabel instead, and save 1000s of keypresses every week, when using hungarian notation you are destroying the intention of intellisence. You have to do 4 keypresses before even Start to get to what you want. – Stefan Nov 20 '08 at 10:51
1  
I'm a Windows programmer who hates Hungarian notation. You can't imagine how conflicted this makes me! – John Dibling Nov 26 '08 at 21:29
5  
As a Hungarian, I feel ashamed that this is what people think about when they think about my fine nation. Here, we call it Bulgarian Notation. – Gregg Lind Jan 13 at 3:13
2  
@ Mladen: I've heard of a better convention for this: uiCustomerName etc. Prefix anything that is visible to the end user with ui. That way you won't have to change the name if uiCustomerName changes from a label to something else. – jcollum Feb 18 at 22:25
show 15 more comments
vote up 15 vote down

I dislike Windows' tendency to typedef pointer-to-X as PX.

This removes the asterisks from the declarations and definitions using this code, which (to me) removes the already-existing, well-known, platform-agnostic, signal that you're dealing with a pointer. It also breaks the symmetry between declaring a pointer with type *a; and dereferencing it, with *a.

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

secdonding @unwind on Hungarian notation.

I also hate using underscores to separate name like mysql_fetch_array in PHP.

I'm not a huge fan of CamelCaps, but they're better than underbars.

Personally I like running the name together in all lowercase so I don't have to worry about getting the wrong thing when I'm typing (no misplaced caps). I also try to use singleword functions and variables, or simple compound terms.

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

I have a couple of co-workers who instead of naming controls on a form like this:

Button btnOK;
TextBox txtLastName;
ComboBox cboAge;

name everything like this (in the designer - this code is just to illustrate the naming convention):

Button _btnOK;
TextBox _txtLastName;
ComboBox _cboAge;

in a weird hybrid of hungarian and private-variables-start-with-underscore. Has anybody ever seen this anywhere else?

link|flag
1  
yes and I couldnt understand it either.... – redsquare Nov 20 '08 at 10:38
show 1 more comment
vote up 4 vote down

I don't care about what the naming conventions are. (although the region example might be going too far ;-) ) But I can get irritated with the way they're enforced. Just creating a coding guidelines document isn't enough. I've found that enabling policies like this works far better than just enforcing them.

Try to have automated checks running on your build server for stuff like this so you get early warnings about mistakes. Distribute settings files for your ide that help you do the right thing, use tools that help format your code like Resharper. Automate everything that can be automated. This actually saves time and irritation. Telling people what to do should be a last resort.

link|flag
vote up 28 vote down

I did work in a team where every interface's name had to end with "Able" (with a capital "A"). It doesnt sound all that bad : Serializable, Cloneable, ... are perfectly good interfaces names. But all our code is in French. And of course, Able doesnt mean anything in French. We ended up with service contracts called something like TaxRetrievalServiceAble and TaxRetrievalServiceImpl, even worse as it was in French : RecuperationDeTaxesServiceAble et RecuperationDeTaxesServiceImlp.

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

I don't like to use underscores in variable names, and regions for all combinations of access modifiers...

But what I hate most, is not having any convention at all and everyone just doing things as they see fit. I like spaghetti, but not when it comes to code.

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

Although it may be a personal preference I dislike the use of prefixing concrete classes with a capital C (like CBinaryFormatter). I do like the use of prefixing interfaces with an I (like IFormatter) so a bit of inconsistency there..

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

I dislike programmers dropping vowels from variable names. Why type 'txt' when you can type 'text'? I prefer variable names to be more verbose, it can only be helpful.

I have also encountered people who favour single character variable names!!!! The reasoning behind it was that the namespace was too long and they preferred to fully qualify everything to make it easier to understand what the variable was.

i.e.

Root.Namespace.Namespace2.Namespace3.ClassName a = new Root.Namespace.Namespace2.Namespace3.ClassName();

Root.Namespace.Namespace2.Namespace3.ClassName2 b = new Root.Namespace.Namespace2.Namespace3.ClassName2();

And then much later in the code you see this...

a.toAssociation(b.toPoint());

This makes me ask myself "what the hell is 'a' and why can I can call 'toAssociation' on it, and what the heck is 'b' and why can I convert it to a point?".

It is seriously not helpful...

Docta

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

The thing that really bugs me is when there is tautology in the naming standards -- you know, the sort of thing where file names must begin with "F" and database table names must end in "_table".

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

I prefer ANY naming convention to BE used, over the complete lack thereof (which, unfortunately, is pretty much the case in many small development teams).

But my personal preferences are pretty much standard:

public class SomeClass
public void DoSomething()
private string thisIsAString;
protected TextBox txtPassword;
public interface IResizeable;

I have the habit of always using the same one-letter variables for specific, frequently-used tasks:

int i; // for counters, eg. "for (int i=0; i<=10; i++)"
int j; // for nested counter #1
int k; // for nested counter #2
int p; // for position lookup, eg. "int p = this.thisIsAString.IndexOf(foo)"
Control c; // for generic control

I use regions only for hiding large code blocks, only where clearly useful, and usually only within methods. I once did the same as in the example above, but it's proven too much hassle. I XML-comment EVERY class member, and that gives me enough visual separation.

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

In modern development languages and environments, C++ included, scope is more important than type, the compiler will inform you of type miss matches but not scope. To this end I favor a simple but effective naming convention -

  • a = argument
  • m = member
  • l = local
  • g = global

Very simple example -

class Foo
{
    private:

    	int mBar ;

    public :

    	Foo ( int aBar )
    	: mBar ( aBar )
    	{
    	}

    	int GetFooBared ( int aMultiplier )
    	{
    		int lBar = mBar * aMultiplier ;
    		return lBar ;
    	}
} ;

static Foo gFoo ( 10 ) ;

int main ( int aArgc, char* aArgv [] )
{
    int lFoo = gFoo . GetFooBared ( 10 ) ;
    return lFoo ;
}
link|flag
show 2 more comments
vote up 9 vote down

I REALLY_HATE havingToRead CoDe With TOO_MANY UpperCase letTers in SymBol Names.

Can you imagine if books were written like that? No one would ever bother learning to read!

I would much rather see code in all lower_case with occasional capitalization and underscores to represent spaces in symbol_names.

link|flag
2  
Underscores really gets me annoyed though, too_many_can_ruin_your_code – LiraNuna Feb 19 at 2:54
show 2 more comments
vote up 5 vote down

We've had a programmer here who insisted on prefixing a random selection of variables with "wo". I think it stood for Workfile. And then he'd shrink down the variable name by removing the most salient pieces of information.

So in the example below, number "wohval" is actually used for a total price to be charged to a hotel. Obviously.

Integer WPrevind Bahh Bamm
Number Woldtot Wogross Wohval Wocval Wotval Wooval Wodcnt Wofval Wonocomm Wobkngfee
Number Woldins
Date Badate
String Woblethld Woldcncind
link|flag
show 2 more comments
vote up 2 vote down

I'm still waiting for the 70's to end in the database world. You still frequently see people sticking to 8 character all upper case names where 4 of the letters are used to indicate the object type (table, etc). The field names are also all upper case, usually with the vowels removed, even when there's room to keep them in place. Most people even still use the all upper case convention for SQL commands even though SQL can actually be made to be a readable thing if lower or mixed case commands and field names are used. Sadly, I think the use of SQL will die before people realize that the style and naming conventions are making maintenance more difficult.

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

This will be quite controversial, but I don't like giving parentheses, brackets, and braces their own line.

Proper indentation should show the structure quite well (look at Python). If you feel insecure about your ability to always close the environments, use an editor that can help you.

Not giving braces their own lines reduces the linecount by up to 1/3. This means that you can actually see up to 50% more of your code on a single screen. If you feel that you need empty lines to separate parts visually, you can still add them.

I know that this goes against brace-language tradition, but I find

if (some condition)
   { do;
     some;
     stuff; }
   else
   { do;
     something;
     else; };

more appealing than

if (some condition)
{
    do;
    some;
    stuff;
}
else
{
    do;
    something;
    else;
};
link|flag
show 10 more comments
vote up 0 vote down

A hybrid of hungarian/scope prefixes/qualifiers that was (possibly still is) used for C++ code in a company I used to work for:

c vl_tag_c
Local variable that holds a char
l Pvl_length_l
Local variable that holds a pointer to a long int
m Uvm_size_m
Constant member variable that holds a pointer to a non-constant unsigned long int
m Pcm_size_m
Non-constant member variable that holds a pointer to a constant unsigned long int


c, l and m are actually typedefs, as are h, i, j and x. Why? To deliberately trip you up if you try to use them as variable names (they are not considered "descriptive" enough.)

link|flag
vote up 11 vote down

Database related, but prefixing tables with 'tbl' and stored procedures with 'sp' really winds me up.

link|flag
1  
+1, dumb convention that I deal with daily. – jcollum Feb 18 at 22:30
show 4 more comments
vote up 1 vote down

One of our conventions is that all ID's need to be prefixed with an 'i' (id="iMain"). I hate it, it defines redundancy. I know it's an ID in HTML because it says "id=", and I know what it is in CSS because it's prefixed with a "#".

I guess that it's an offshoot of hungarian notation, I'll sometimes stumble across Javascript variables prefixed with obj_ and int_. I hate that, it's noise, I've never needed it.

link|flag
vote up 1 vote down

I prefer a convention like this for for braces:

if (some condition){
  do;
  some;
  stuff;
} else{
  do;
  something;
  else; 
};

It's more clear for me. Not only has the benefits of this comments, it don't break the format convention.

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

you are not having a bad day, I worked with a special person that insisted on strongly typed namespaces.

namespace start
{
   namespace continue
   {
       namespace specific
       {
           className
           {
           }
       }
    }
}

which followed part of our naming scheme, but it was just not needed, especially when all that it was used for was to hide code flaws that wouldn't go away on their own without them. The code ended up looking like:

using start::continue::specific;
function( you_dont_know_where_Im_from );

This hides all the usefullness of namespaces in C++ of knowing where you were calling something. I'm glad I was recently tasked with removing this code (slight note of sarchasm as it was painful).

Special note: special person is no longer with us.

link|flag
vote up -2 vote down
  • I despise anything other than lowercase 'id' for an id field in a database.

  • I despise even the merest hint of capital letters in any variable, function, class, etc.

  • I despise groups of variables where the hierarchy is ignored. ('maxblah' and 'minblah' instead of 'blahmax' and 'blahmin');

Other than that I'm easy :)

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

Apart from hungarian, which is just a ridiculously bad idea, the one "naming convention" that annoys me is the one that ignore the language rules.

In C++, identifiers with leading underscore followed by a capital letter (or another underscore), as well as any identifier starting with an underscore in the global namespace, are reserved to the implementation, and yet people try again and again to use these as variable names or class members. There may be similar examples in other languages, but this is the one I keep running into.

In general, as long as people follow the language rules, their naming convention doesn't bother me too much. Hungarian is silly because you end up specifying redundant information, and it becomes a pain to maintain, but eh, it's more or less readable and the code compiles. :p

link|flag
vote up 2 vote down

A long time ago, a customer tried to force us to use a 100KB C header file in a project for them which redefined every operator plus a couple of other things. Example:

if (x _LT_ 5) { .... }

Plus they had some rules how to name things (name of the file in every function and global in that file, etc). You get the idea.

Since this was a fixed cost project, we politely offered them to do this ... and we offered the same result at half the price without this requirement. That was the only time in my life, when a budget meeting saved me :)

link|flag
vote up 2 vote down

I once worked on a program where the original developer used a bizarre form of Camel Case that I've never seen anywhere else. The first and last letter of every word was capitalized. He also didn't follow that consistently, that naming convention was mixed with proper Camel Case as well as putting underscores between words.

function WeBForMDispoSelect_submit()
function WebFormRefresH(taskrefresh)
function LogouT()
function NeWManuaLDiaLCalL(TVfast)
link|flag
show 1 more comment
vote up 0 vote down

A very simple, and common one; I don't like interface names prefixed with 'I'. Interfaces should be generally descriptive, with the implementations more descriptive still. I do not want to see a collection of ICustomer ... I want to see a collection of Customer.

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

"braces must go on a new line" I think it's important that brace style is consistent. It's hard to parse code which has a mixture of styles. The particular style doesn't matter (although GNU style is insane).

"you shouldn't use the ternary if/else" Good advice, so long as it isn't enforced too tightly - there are occasions where it's nice. It's not a big sacrifice to give it up though.

As for the regions - I agree on this. Any source code that's just there for the editing environment is daft. This includes the changes made to make intelligence work that others have mentioned.

Things that irritate me personally:

  • Inconsistent style.
  • Deviating from the de-facto standard (if any) for a given language.
  • Personal offense / religious objection to a style chosen for a project. Get over it.
  • Hungarian (both type and scope, though type is much less forgivable)
  • Objection to abbreviated names for short-scoped variables or single letter names for idiomatic code (i for for loops).

I also dislike "heavy" (as in formatting) commenting styles. It seems to be used as a substitute for good code structure.

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.