Results 1 to 10 of 24

Thread: Article: Why Code Readability Matters

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Quote Originally Posted by Darkhog View Post
    I also do lots of commenting. Even most insignificant and obvious line should be IMO commented, because after few months you won't know what it does.
    Commenting is verry important but I keep forgetting to coment my code myself

  2. #2
    Quote Originally Posted by SilverWarior View Post
    Commenting is verry important but I keep forgetting to coment my code myself
    Don't feel like an alien, it happens to many programmers, myself included. But well writen code is a good documentation in itself if you name your functions/procedures and types/const/variables/classes/properties with meaning names.

  3. #3
    Quote Originally Posted by pitfiend View Post
    Don't feel like an alien, it happens to many programmers, myself included.
    It happens to me too. I usually put comments after I'm certain code is doing what is supposed to do.

    Quote Originally Posted by pitfiend View Post
    But well writen code is a good documentation in itself if you name your functions/procedures and types/const/variables/classes/properties with meaning names.
    Yeah, about that... I'm not big fan of "self documenting code". I had many times read code that was supposed to be "self documenting one" but wasn't easy to grasp (though easier than if variables were called "Variable1","Variable2", etc. and functions "Function1","Function2",...). And it was both Pascal and other language code (which includes so easy, at least for me, languages like C# or Java).

    In my opinion nothing will help more than properly documented code. Even comments like "this function is supposed to do..." before function body are good.

  4. #4
    PGDCE Developer Carver413's Avatar
    Join Date
    Jun 2010
    Location
    Spokane,WA,Usa
    Posts
    206
    I hate comments in the code,it just makes it harder to visualize the actual code. I really hate people who indent 8 char at a time, 2 is enough.

  5. #5
    Quote Originally Posted by Carver413 View Post
    I hate comments in the code,it just makes it harder to visualize the actual code. I really hate people who indent 8 char at a time, 2 is enough.
    I don't hate coments in the code unles they span through several lines. Those can realy make hadred to visualize the code.
    The best thing to help bisualize the code are region definitions and code folding that is of course if they are used properly. It is to bad they are somwheat broken in Delphi. If you make any syntactical error all the code that is below that point gets unfolded automaticaly. This unfortunately makes code foldin almost uselsess in Delphi.
    I myself use 4 char indents mosty 2 in type declarations only. The main reason for this is old practice from Delphi 6. Since Delphi 6 didn't support automaticly adding "end;" after every "begin" I dah to rite all those ends by myself. And since end is 4 characters long I kept 4 char indets as it alowed me to simply pres UP arrow key to get in place for writing the code inside the method I just started to write.

  6. #6
    PGDCE Developer Carver413's Avatar
    Join Date
    Jun 2010
    Location
    Spokane,WA,Usa
    Posts
    206
    I hate code folders as well. to me they are simply a bandaid to an editor design that should have went away long ago. with the Explorer I have an editor design that allows me to qucikly move to where I want to work and see only what I am working on.

  7. #7
    I don't think I quite folow what you wanna say.

  8. #8
    I don't know what "region definitions" are. Do you mean to use your home language (Spanish, French, German...) or what?
    No signature provided yet.

  9. #9
    Quote Originally Posted by Ñuño Martínez View Post
    I don't know what "region definitions" are. Do you mean to use your home language (Spanish, French, German...) or what?
    No Ñuño we are talking about this:
    http://docwiki.embarcadero.com/RADSt...kyo/en/Regions
    http://wiki.freepascal.org/IDE_Windo...7B.25Region.7D

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •