vote up 5 vote down star
5

What Delphi coding standards document(s) do you follow?

Our company is looking at putting some better coding standards in place, to improve our code’s readability, reviewability, and maintainability. We’ve come across CodeGear’s “Object Pascal Style Guide”, but it hasn’t been touched in quite a while and I imagine a number of people have made some local improvements or additions. I’ve come across some published variations and other documents, which I will list, below.

NB: I do not want to start a style war. I just want to know what standards you follow, and why.

Thanks.


UPDATE: Well, the "JCL Delphi Language Style Guide" seems to be the clear winner! Thanks!

flag

9 Answers

vote up 0 vote down

For some inane historical reason, the coding standard at my work is to have all keywords in uppercase, in both delphi and sql. Thank god for caps lock.

link|flag
vote up 0 vote down

There can be a tendency to over-engineer coding standards to the point where they get in the way of writing code.

I agree with Jozz’s comment. You can look at all the recommended standards, pick one and force it upon your coders or you can get your team involved in the process.

In my experience, the best way to get a team engaged is to have the team come up with the idea and the benefits of adoption. Your existing talent is your best resource. Likewise, they can be your ultimate enemy if you force them down a path they don’t buy into.

So, take a look at your existing coding variants and get the team together for some vibrant discussions on:

  • The reasons for adopting a coding standard.
  • Essential considerations in standardization.
  • Surfacing any insecurities in the team surrounding this issue.
  • Finding a point of agreement. What's important and what's not.
  • Establishing some corporate objectives so everyone feels like they are working towards a common goal.
  • Get the team to sell the benefits of standardization to themselves.

The most important objective must be to establish a ‘standard’ that best serves your team and your company.

link|flag
vote up 1 vote down

It really doesn't matter as long as you pick one and stick to it. A coding standard is like a dialect, and as long as everyone on the team speaks the same dialect, you're fine.

That said, why not pick the same standard as your runtime library (VCL) and documentation use? Then you will all be speaking the same dialect and you will have an easier time reading the runtime library code. And there are plenty of code examples to illustrate coding conventions.

link|flag
That's a very good point, and I appreciate your making it. Thanks! That said, we want to pick a standard that tends toward the "complete" side, so the VCL document may not be the best. – Mattias Andersson Nov 4 '08 at 19:52
My personal persuasion is that less is more, and at the end of the day, the rules you can capture in a standards document are vastly less important for maintainability than the attitude and experience of the programmer. – Jozz Nov 4 '08 at 20:04
vote up 0 vote down

About.com’s “Delphi Identifier Naming Conventions”

http://delphi.about.com/od/standards/l/bldnc.htm

link|flag
vote up 0 vote down

CodeGear’s “Hungarian peanut butter”, for naming identifiers

http://dn.codegear.com/article/27983

link|flag
vote up 0 vote down

Econos – Coding Standard Document

(Subtitled “Delphi 4 Developer's Guide Coding Standards Document”.)

http://www.econos.de/delphi/cs.html

link|flag
vote up 0 vote down

JVCL-extended version of CodeGear’s “Object Pascal Style Guide”

(This looks just like the JCL version, to me.)

http://homepages.codegear.com/jedi/jvcl/StyleGuide.htm

link|flag
vote up 7 vote down check

JCL Delphi Language Style Guide

(An extension of CodeGear’s “Object Pascal Style Guide”)

http://homepages.borland.com/jedi/jcl/documents/styleguide.html

link|flag
Mostly I follow close to this standard. My exception is that when laying down edit components, I generally prefix them with ed (doesn't matter if its an edit, memo or combo box). For buttons I prefix with btn. – skamradt Nov 4 '08 at 20:34
vote up 1 vote down

CodeGear’s “Object Pascal Style Guide”

http://dn.codegear.com/article/10280

link|flag

Your Answer

Get an OpenID
or

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