• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

code comments

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    #21
    What about adding comments for stuff like JavaDoc to extract? To me it looks bad if some methods have no comment in the documentation at all... it makes me think they have not been thorough documenting the code. When you only get the library, not the source code, this is a bad feeling to have.
    Originally posted by MaryPoppins
    I'd still not breastfeed a nazi
    Originally posted by vetran
    Urine is quite nourishing

    Comment


      #22
      I get QA emails every morning from my idiot technical lead telling me I have to put in comments, even getters have to be done so..

      /**
      *
      * @return name
      */
      public String getName(){
      ..

      ..will get me an email every morning until I change it to..

      /**
      * Returns the name associated with this object.

      * @return name
      */
      public String getName(){

      Now you can see why I never took the extension they offered.

      Comment


        #23
        Originally posted by DimPrawn View Post
        Question.

        Do you write comprehensive code comments, thus making the job much longer (kerrching) but making it much easier for someone else to pickup the code and replace you, or write cryptic comment free code that is quick to write (no contract renewal) but no bugger can pick it up (and get called back in on a new contract)?
        I generally write just enough so that if I come back in a years time I can understand what I did.

        Comment


          #24
          Originally posted by Spacecadet View Post
          when I started programming I was taught that comments should be comprehensive enough so that if all the code was ripped out and only the comments left then it would be straight forward enough for someone to rewrite the program.

          My comments vary from spartan to comprehensive depending on what its for.

          I write a lot of migraiton scripts, these get run a limited number of times and usually by myself so no need for comments.

          Interfaces which should survive past my contract end date get full comments
          -- Headers which include version info
          -- test scripts (i write SQL) so that someone debugging it already has a bunch of SQL to test the data with
          -- then the body of the T-SQL has numbered comments broken down by section. These are compiled at the top for documentation purposes then repeated on the line above the piece of code they refer to

          Anyone who needs to understand the stored procedure only needs to read the header and they could completely rebuild it

          When writing the program I usually start with the comments, map out exactly what I want it do to, where and why then build the actual code around that.
          That's interesting because it's the opposite of the philosophy that the code is self commented by meaningfull variable and function names.

          Assuming that the code can be quite clearly read without comments (with meaningfull names etc) then don't you agree that the comments are redundant ?

          Also, bugs in comments are a lot harder to spot than bugs in the code(because the compiler doesn't help you there), and it's not a functional requirement that all comments are correct so they are more likely than the code to be incorrect.

          Comment


            #25
            Originally posted by minestrone View Post
            I get QA emails every morning from my idiot technical lead telling me I have to put in comments, even getters have to be done so..

            /**
            *
            * @return name
            */
            public String getName(){
            ..

            ..will get me an email every morning until I change it to..

            /**
            * Returns the name associated with this object.

            * @return name
            */
            public String getName(){

            Now you can see why I never took the extension they offered.
            This sort of thing and xml comments in c# really get on my nerves. I've seen classes with about 10 lines of actual code over 100 lines long due to this (some coders even xml doc their private fields).
            I thought the goal was to write your code so it can be easily read, turning commented sections into their own self describing methods where-ever possible.

            Comment


              #26
              Originally posted by minestrone View Post
              I get QA emails every morning from my idiot technical lead telling me I have to put in comments, even getters have to be done so..

              /**
              *
              * @return name
              */
              public String getName(){
              ..

              ..will get me an email every morning until I change it to..

              /**
              * Returns the name associated with this object.

              * @return name
              */
              public String getName(){

              Now you can see why I never took the extension they offered.
              When I read code like that I can't see anything - code littered with comments are like a crash site. When I try to understand someone else's code, the first thing I do normally is strip out all the comments so I can actually see what's important - the actual code.

              Comment


                #27
                Originally posted by christhecontractor View Post
                That's interesting because it's the opposite of the philosophy that the code is self commented by meaningfull variable and function names.

                Assuming that the code can be quite clearly read without comments (with meaningfull names etc) then don't you agree that the comments are redundant ?

                Also, bugs in comments are a lot harder to spot than bugs in the code(because the compiler doesn't help you there), and it's not a functional requirement that all comments are correct so they are more likely than the code to be incorrect.
                Yep, I agree. A few comments can still be helpful to describe what a method is trying to do - but way above the level of 'getting message.
                Only one slight problem - almost no b*gger writes code like this
                +50 Xeno Geek Points
                Come back Toolpusher, scotspine, Voodooflux. Pogle
                As for the rest of you - DILLIGAF

                Purveyor of fine quality smut since 2005

                CUK Olympic University Challenge Champions 2010/2012

                Comment


                  #28
                  Originally posted by christhecontractor View Post
                  That's interesting because it's the opposite of the philosophy that the code is self commented by meaningfull variable and function names.
                  It's not opposite, it's complementary

                  Also meaningful function and variable names will only get you so far, at some point you will need to do some fairly complex logic, recursion, loops or string manipulation which need notes

                  Originally posted by christhecontractor View Post
                  Assuming that the code can be quite clearly read without comments (with meaningfull names etc) then don't you agree that the comments are redundant ?
                  Nope

                  Originally posted by christhecontractor View Post
                  Also, bugs in comments are a lot harder to spot than bugs in the code(because the compiler doesn't help you there), and it's not a functional requirement that all comments are correct so they are more likely than the code to be incorrect.
                  This is correct however, the comments are there for a guide not as a bible.
                  Comments can become out of date very quickly if not maintained with the code, however this doesn't mean that well written comments can't complement a well written program.

                  The real problems only start when a junior programmer starts work on it and neglects/can't be arsed to maintain the comments, then someone else needs to debuig those changes and junior "i don't need comments" programmer has done half a job.

                  All it takes is a bit of discipline
                  Coffee's for closers

                  Comment


                    #29
                    Originally posted by NotAllThere View Post
                    I recall years ago being told of a program written in assembler, that was hugely complicated, and stopped working. The developer responsible was on holiday, and couldn't be reached - no mobile phones in those day. The other programmers tried to work out what it was doing, and how to fix it, but there was only one comment, "BOH", at line 1066. This being the only place commented, it was felt this must be the important part of the code. But they couldn't work it out. They had to resort to some kind of manual workaround.

                    When the developer returned from holiday - to very black looks - he was asked about the comment.

                    "Oh", he said, "that's easy. 1066 Battle Of Hastings".
                    If you're writing a class that long you need to be shot.
                    "Experience hath shewn, that even under the best forms of government those entrusted with power have, in time, and by slow operations, perverted it into tyranny. "


                    Thomas Jefferson

                    Comment


                      #30
                      Originally posted by Ruprect View Post
                      If you're writing a class that long you need to be shot.
                      In the eye
                      +50 Xeno Geek Points
                      Come back Toolpusher, scotspine, Voodooflux. Pogle
                      As for the rest of you - DILLIGAF

                      Purveyor of fine quality smut since 2005

                      CUK Olympic University Challenge Champions 2010/2012

                      Comment

                      Working...
                      X