vote up 21 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

prev 1 2
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 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 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
1  
I have recently moved in direct defiance of the 'able' convention. Instead, I use something like "IAmAProjectsRepo" for repository pattern stuff , "IStoreImages" for datalayer dependencies. Sometimes I take it a bit too far, though: I once had a component of an Xna graphics engine I was working on called "IDrawThings". I'm not sure if that is brilliant or punishable. – Dusda Oct 2 at 20:47
show 2 more comments
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 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 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 16 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 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
3  
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 '09 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 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 19 vote down

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

link|flag
1  
"m_" indicates member, not private. How would making it public change anything? Also in most OOP languages there's a "this" or "self" keyword (or variable) which allows you to reference the member variable. Using it would make the prefix unnecessary (and redundant) – sebnow Feb 19 at 3:15
show 6 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.