Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. What sort of best practices coding do you use?

What sort of best practices coding do you use?

Scheduled Pinned Locked Moved The Lounge
comtoolsquestiondiscussioncode-review
43 Posts 26 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Marc Clifton

    Do you/your company enforce best practices? Do you do code reviews to enforce them, or use FxCop or other automated means? If you don't adhere to any best practice document/utility, why not? Would you agree or disagree that most of us don't use coding best practices? Marc

    Thyme In The Country

    People are just notoriously impossible. --DavidCrow
    There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
    People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

    A Offline
    A Offline
    Anna Jayne Metcalfe
    wrote on last edited by
    #26

    We don't have a formal standard, but we do use PC-Lint extensively (funny, that!). To support that, we use books such as "Effective C++", "More Effective C++", "Imperfect C++" etc. pretty heavily. As a micro-ISV we're pragmatic about it: if anyone points out what they think is a bad practice in our code, we look into it and refactor it if appropriate. In the long term such changes can add-up to significant improvements. I find much of it is common sense, once you have a source that discusses relevant issues. Of course, for a larger team a more formalised approach may be better, but I've yet to see a team that does it well without descending into "my way is best" politics.

    Anna :rose: Currently working mostly on: Visual Lint :cool: Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.

    1 Reply Last reply
    0
    • K Kevin McFarlane

      I think Spec# has a bit more stuff than DbC too. Not sure how it would compare to SPARK. Anyway, why do you think most of the newer languages did not bother to integrate DbC? Seems like such a good idea to adopt.

      Kevin

      S Offline
      S Offline
      Stuart Dootson
      wrote on last edited by
      #27

      Probably lack of (perceived, at least) demand. Eiffel's got DbC, and look at what winner Eiffel is . I must admit, I prefer functioanl, declarative languages like Haskell[^], where you pretty much only state the contract...

      1 Reply Last reply
      0
      • M Marc Clifton

        Do you/your company enforce best practices? Do you do code reviews to enforce them, or use FxCop or other automated means? If you don't adhere to any best practice document/utility, why not? Would you agree or disagree that most of us don't use coding best practices? Marc

        Thyme In The Country

        People are just notoriously impossible. --DavidCrow
        There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
        People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

        A Offline
        A Offline
        AbuseByUnkindPeople
        wrote on last edited by
        #28

        I like Guidance Explorer, MSDN & I need to check if the latest FxCop passes its own tests

        _________________________________________ Give a man a fish you've fed him for a day. Teach a man to fish and you've fed him for life."... I guess I should write an article rather than giving out tips.

        1 Reply Last reply
        0
        • M Marc Clifton

          Do you/your company enforce best practices? Do you do code reviews to enforce them, or use FxCop or other automated means? If you don't adhere to any best practice document/utility, why not? Would you agree or disagree that most of us don't use coding best practices? Marc

          Thyme In The Country

          People are just notoriously impossible. --DavidCrow
          There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
          People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

          J Offline
          J Offline
          Jonas Hammarberg
          wrote on last edited by
          #29

          We tries to adhere to the recommendations in "Code Complete", except for comments below module level -- They are traded for "Self Documenting Code"... Jupp, sometimes you get rather cumbersome names ( = refactoring time).

          1 Reply Last reply
          0
          • K Kevin McFarlane

            Dustin Metzgar wrote:

            or failing to comment complicated sections.

            How about failing to comment any sections? I've been unfortunate enough to have to maintain such code.:mad: The code I'm maintaining now also has next to no comments.:mad:

            Kevin

            S Offline
            S Offline
            si618
            wrote on last edited by
            #30

            I used to place inline comments, but I stopped doing so, simply because if something isn't able to be understood by reading the variable/method names and summary, examples, params, exceptions, etc in the class/method header documentation (C# shop here), then I refactor it until it is simple to understand... What's the saying...if debugging is twice as hard as coding, then by definition if your code is as clever as you can write it, you will not be able to debug it. Did I mention that GhostDoc is a god-send? :)

            P K 2 Replies Last reply
            0
            • M Marc Clifton

              Do you/your company enforce best practices? Do you do code reviews to enforce them, or use FxCop or other automated means? If you don't adhere to any best practice document/utility, why not? Would you agree or disagree that most of us don't use coding best practices? Marc

              Thyme In The Country

              People are just notoriously impossible. --DavidCrow
              There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
              People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

              P Offline
              P Offline
              Paul Watson
              wrote on last edited by
              #31

              On our shared source repo we are Nazis and you had better be sure what you check-in is at least as good as the crap of the Gods. Otherwise we rely more on testing and informal, periodic code reviews. We do have Fxcop equivalents but they won't break the build.

              regards, Paul Watson Ireland FeedHenry needs you

              Shog9 wrote:

              eh, stop bugging me about it, give it a couple of days, see what happens.

              1 Reply Last reply
              0
              • L Lost User

                I really hate this fucking keyboard...

                Truth is the subjection of reality to an individuals perception

                P Offline
                P Offline
                Paul Watson
                wrote on last edited by
                #32

                And you code with it?

                regards, Paul Watson Ireland FeedHenry needs you

                Shog9 wrote:

                eh, stop bugging me about it, give it a couple of days, see what happens.

                1 Reply Last reply
                0
                • M Marc Clifton

                  Do you/your company enforce best practices? Do you do code reviews to enforce them, or use FxCop or other automated means? If you don't adhere to any best practice document/utility, why not? Would you agree or disagree that most of us don't use coding best practices? Marc

                  Thyme In The Country

                  People are just notoriously impossible. --DavidCrow
                  There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
                  People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

                  D Offline
                  D Offline
                  destynova
                  wrote on last edited by
                  #33

                  Marc Clifton wrote:

                  Do you/your company enforce best practices? Do you do code reviews to enforce them, or use FxCop or other automated means? If you don't adhere to any best practice document/utility, why not? Would you agree or disagree that most of us don't use coding best practices?

                  Hmm... well, my last company didn't have an enforcement policy on following best practices, but it did document many of the processes we considered were good on our development wiki. We also practiced some agile... err... practices, embracing a variable subset of Extreme Programming based on our own judgement. This meant pair programming, test-first design (probably the best thing since sliced bread (and coffee)), opportunistic refactoring, javadoccing and commenting as much as we felt was needed (mostly, not a lot of comments at all), extreme planning (another nice approach to breaking down problems) and using source-control with mostly-continuous integration. Nobody can do everything, so as always, it was a case of comprimising and optimising the variables based on our own evolving heuristic assumptions. However, we didn't do any code reviews during my 6-month stay, although it was always on the cards. Since we had a small team, I think the more experienced permanent cadre guys felt too busy/pressured to get around to it. I've never heard of FxCop - I'll check it out... I'd agree wholeheartedly about the good/bad coders bit. If people are at a poor standard of coding, there's no amount of process improvement/documentation/practices that will make their code good, short of training them up to speed. This needs to be recognised and worked on for real. I think it's usually a fixable problem if the programmer is at all smart and enjoys programming - otherwise they just shouldn't be in this business. :) Oisín

                  1 Reply Last reply
                  0
                  • L Lost User

                    In-house crap coders - you can train them to do better. Out-sourced coders - there are too many variables. See earlier thread from Marc Clifton and my replies to him.

                    G Offline
                    G Offline
                    Grimolfr
                    wrote on last edited by
                    #34

                    Richard A. Abbott wrote:

                    In-house crap coders - you can train them to do better.

                    Not necessarily. Some "programmers" are completely untrainable as far as best practices, standards, and style are concerned.


                    Grim

                    (aka Toby)

                    MCDBA, MCSD, MCP+SB

                    Need a Second Life?[^]

                    SELECT * FROM users WHERE clue IS NOT NULL GO

                    (0 row(s) affected)

                    1 Reply Last reply
                    0
                    • M Marc Clifton

                      Do you/your company enforce best practices? Do you do code reviews to enforce them, or use FxCop or other automated means? If you don't adhere to any best practice document/utility, why not? Would you agree or disagree that most of us don't use coding best practices? Marc

                      Thyme In The Country

                      People are just notoriously impossible. --DavidCrow
                      There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
                      People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

                      E Offline
                      E Offline
                      esolliday
                      wrote on last edited by
                      #35

                      I have been a Software QA (OMG :omg:) for about 15 years, and 4 companies now. In all of that time, I have only seen one company use formal code reviews that include style and comment checks (they built safety systems for Nuclear Power Plants), in addition to functional checks. While it did take an investment of additional time by both the Developers and QA staff, the end result is that a majority of issues were found before they became expensive to fix. Like any other enforced standard, company or industry wide, it takes a certain amount of time for all involved to "get used" to following them, but once this happens it becomes second nature.

                      1 Reply Last reply
                      0
                      • L Lost User

                        Vikram A Punathambekar wrote:

                        if God were working for me, I would trust him all right.

                        Not me... remember He created both good[^] and evil[^]. ;P

                        "Be who you are and say what you feel, because those who mind don't matter and those who matter don't mind." - Dr. Seuss

                        P Offline
                        P Offline
                        pdohara
                        wrote on last edited by
                        #36

                        God didn't create evil, because evil is not a thing, but that's a discussion for the Soapbox[^] :-). We use XP loosely (is there any other way?). Mostly the attitude here is hire good people and make sure there is nothing in their way. Of course we can do that because we have 6 developers. The more people you hire the more walls you need to build to make sure the general programmer is pointing in the right direction. I like working in a small shop, where I can take a break and read Code Project. -- modified at 10:05 Tuesday 17th October, 2006

                        Tanks for your support
                        Pat O
                        Blog

                        _ _ _
                        /*\== /*\== /*\==

                        1 Reply Last reply
                        0
                        • S si618

                          I used to place inline comments, but I stopped doing so, simply because if something isn't able to be understood by reading the variable/method names and summary, examples, params, exceptions, etc in the class/method header documentation (C# shop here), then I refactor it until it is simple to understand... What's the saying...if debugging is twice as hard as coding, then by definition if your code is as clever as you can write it, you will not be able to debug it. Did I mention that GhostDoc is a god-send? :)

                          P Offline
                          P Offline
                          pdohara
                          wrote on last edited by
                          #37

                          Good comments tell why a thing was done, not what was done. If the only way a programmer can understand the code is from a comment either the programmer needs some work, or the code does. On the other had, I recently created a backwards for loop (Starts at the end of the Bitmap it is copying and moves back to the origin), because it results in faster code on the ARM processor we are currently using. I commented that so when we change processors (the hardware guys tell me we never will, but I don't believe them), I can re-evaluate the code. Also so someone else doesn't come along and make the code simpler by rewriting the for as a more standard 0 to length for loop. These cases are rare and so comments should be also.

                          Tanks for your support
                          Pat O
                          Blog

                          _ _ _
                          /*\== /*\== /*\==
                          <ooo> <ooo> <ooo>

                          1 Reply Last reply
                          0
                          • B bwhittington

                            There is code review at the company I work for and it is good and bad. Almost everyone who does .Net programming is on a code review team. Each team is a mix of experienced senior level developers, mid-level developers, and then novices. This approach works well as everyone is learning from everyone else. However, it is detrimental in a way because each group looks at different items more closely than others and as a result application have more trouble meshing will with other applications than they should have. Also, there are two types of comments that code reviewers make. Critical items and recommended. A developer can choose to ignore recommended comments depending on how difficult or time consuming a change, or how lazy the programmer is. The critical items however can only be overturned by two managers. In ways, code review does slow down development but if done right, everyone learns from everyone else and applications follow a certain standard company wide.

                            L Offline
                            L Offline
                            lswrcmh
                            wrote on last edited by
                            #38

                            Our company code 'review' is little short of a joke. Some months after the code has gone live the code base receives an anonymous review. The reviewer divides the project into an arbitrary number of sections and reviews each section against 16 language independent 'rules', 9 of which relate to commenting. (Yes the same rules apply to batch files, sql statements, stored procedures/triggers, vbscript, VB6, Vb.Net, asp etc). Each rule is scored for each section and if the rule does not apply, is assumed to be success. A rule is violated by any section is scored as 0. A rule passed by all sections it is scored as 1. The rule scores are then summed to give an overall score for the project, between 0 and 16. The DBA always scores well as only 4 rules apply to him so even if he fails all the rules that apply he still gets a score of 12! The poor programmer who has his work in 16 source files, each evaluated separately, each failing a single, different rule, ends up with a score of zero, although each individual source file scored 15! To make matters worse the review scores contribute to ones annual review.

                            1 Reply Last reply
                            0
                            • M Marc Clifton

                              Do you/your company enforce best practices? Do you do code reviews to enforce them, or use FxCop or other automated means? If you don't adhere to any best practice document/utility, why not? Would you agree or disagree that most of us don't use coding best practices? Marc

                              Thyme In The Country

                              People are just notoriously impossible. --DavidCrow
                              There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
                              People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

                              M Offline
                              M Offline
                              mitchell50
                              wrote on last edited by
                              #39

                              I would agree. Even though code is a very logical product, coding is a very creative process. That said, applying best practices in a coherent and consistent manner can do wonders for the "art".

                              1 Reply Last reply
                              0
                              • S si618

                                I used to place inline comments, but I stopped doing so, simply because if something isn't able to be understood by reading the variable/method names and summary, examples, params, exceptions, etc in the class/method header documentation (C# shop here), then I refactor it until it is simple to understand... What's the saying...if debugging is twice as hard as coding, then by definition if your code is as clever as you can write it, you will not be able to debug it. Did I mention that GhostDoc is a god-send? :)

                                K Offline
                                K Offline
                                Kevin McFarlane
                                wrote on last edited by
                                #40

                                The problem is that typically code with next to no comments also has bad method names and long methods. My approach these days is to write summary comments for almost all methods. I don't necessarily comment the args unless unclear. When developing code I often use inline section summary comments. Many of these get removed by refactoring as the comments become new method names. Also I make heavy use of the "replace conditinal with boolean refactoring." Also I find the most common deficiency in code is lack of "why" comments as the other guy says.

                                Kevin

                                1 Reply Last reply
                                0
                                • M Marc Clifton

                                  Do you/your company enforce best practices? Do you do code reviews to enforce them, or use FxCop or other automated means? If you don't adhere to any best practice document/utility, why not? Would you agree or disagree that most of us don't use coding best practices? Marc

                                  Thyme In The Country

                                  People are just notoriously impossible. --DavidCrow
                                  There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
                                  People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

                                  S Offline
                                  S Offline
                                  sinwhisky
                                  wrote on last edited by
                                  #41

                                  We use all the perfmons we could, and test objects appart to get an idea of the speed. (Always focus on speed, not resources :rolleyes:) We look FxCop but we know there is a lot of things that we could not implement, time is money, so what we do is putting better in the next project (learning from the mistakes). The important thing is we have design our libraries explaining almost everything for the new people, and there are updated on every project. So in a few projects more will complete all fxcop specifications for our global libraries like database connection, then phase 2 will be clrprofiler tunning :-D

                                  Alejandro Daza Ingeniero de Sistemas Universidad Nacional de Colombia

                                  1 Reply Last reply
                                  0
                                  • E Ed K

                                    Marc Clifton wrote:

                                    I guess that's where places like Code Project come in

                                    So we need a CodeReview forum!!

                                    ed ~"Watch your thoughts; they become your words. Watch your words they become your actions. Watch your actions; they become your habits. Watch your habits; they become your character. Watch your character; it becomes your destiny." -Frank Outlaw.

                                    B Offline
                                    B Offline
                                    bigbrownbeaver
                                    wrote on last edited by
                                    #42

                                    Brilliant idea... but Some things are more subjective than others, best practices for you might not be best practices for someone else, I know my code is noobish, but finding your own rule set for programming is important, then sticking to it. I fear that a CodeReview forum would just become a R18 flaming forum, and no conclusions will really be reached. for (int iq = 0;iq > -1;iq++);

                                    E 1 Reply Last reply
                                    0
                                    • B bigbrownbeaver

                                      Brilliant idea... but Some things are more subjective than others, best practices for you might not be best practices for someone else, I know my code is noobish, but finding your own rule set for programming is important, then sticking to it. I fear that a CodeReview forum would just become a R18 flaming forum, and no conclusions will really be reached. for (int iq = 0;iq > -1;iq++);

                                      E Offline
                                      E Offline
                                      Ed K
                                      wrote on last edited by
                                      #43

                                      True enough. It would probably dwarf the SoapBox! :laugh:

                                      ed ~"Watch your thoughts; they become your words. Watch your words they become your actions. Watch your actions; they become your habits. Watch your habits; they become your character. Watch your character; it becomes your destiny." -Frank Outlaw.

                                      1 Reply Last reply
                                      0
                                      Reply
                                      • Reply as topic
                                      Log in to reply
                                      • Oldest to Newest
                                      • Newest to Oldest
                                      • Most Votes


                                      • Login

                                      • Don't have an account? Register

                                      • Login or register to search.
                                      • First post
                                        Last post
                                      0
                                      • Categories
                                      • Recent
                                      • Tags
                                      • Popular
                                      • World
                                      • Users
                                      • Groups