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. Other Discussions
  3. The Weird and The Wonderful
  4. One guidelines for C/C++ programmer

One guidelines for C/C++ programmer

Scheduled Pinned Locked Moved The Weird and The Wonderful
helpc++
37 Posts 18 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.
  • A asadullah ansari

    In your project, If you are using if condition like

    enum
    {
    Blue_c,
    Yellow_c,
    Red_c
    };
    int color;

    if( color == yellow_c)
    {
    .....
    ......
    }
    or
    if(color != Red_c)
    {
    ....
    .....
    }

    Now you know by mistake if you forget one = or ! means if(color = yellow_c) or if(color = Red_c) then no error will come and bug fixing cost for your projects So To avoid this cost you should use

    if(yellow_c == color)
    {
    .....
    ......
    }
    or
    if(Red_c != color)
    {
    ....
    .....
    }

    Now if you forgot to put one = ot ! then compilation error will come.. So this should be in coding standard to use like this...

    Truth Can'nt be changed

    L Offline
    L Offline
    leppie
    wrote on last edited by
    #2

    No, not here.

    xacc.ide - now with TabsToSpaces support
    IronScheme - 1.0 alpha 4a out now (29 May 2008)

    B 1 Reply Last reply
    0
    • L leppie

      No, not here.

      xacc.ide - now with TabsToSpaces support
      IronScheme - 1.0 alpha 4a out now (29 May 2008)

      B Offline
      B Offline
      BadKarma
      wrote on last edited by
      #3

      That's correct, in fact here we encourage people to use the most ugly, unwell formed and disaster bringing code that they may come up to. ;P

      Learn from the mistakes of others, you may not live long enough to make them all yourself.

      L C 2 Replies Last reply
      0
      • B BadKarma

        That's correct, in fact here we encourage people to use the most ugly, unwell formed and disaster bringing code that they may come up to. ;P

        Learn from the mistakes of others, you may not live long enough to make them all yourself.

        L Offline
        L Offline
        leppie
        wrote on last edited by
        #4

        BadKarma wrote:

        That's correct, in fact here we encourage people to use the most ugly, unwell formed and disaster bringing code that they may come up to. Poke tongue

        Or otherwise known as: Job Security ;P

        xacc.ide - now with TabsToSpaces support
        IronScheme - 1.0 alpha 4a out now (29 May 2008)

        B 1 Reply Last reply
        0
        • L leppie

          BadKarma wrote:

          That's correct, in fact here we encourage people to use the most ugly, unwell formed and disaster bringing code that they may come up to. Poke tongue

          Or otherwise known as: Job Security ;P

          xacc.ide - now with TabsToSpaces support
          IronScheme - 1.0 alpha 4a out now (29 May 2008)

          B Offline
          B Offline
          BadKarma
          wrote on last edited by
          #5

          We should write our own coding standard. For beginner - Writing Code Horrors for dummies - Learn to Code in Horror Style in 21 days For Professionals - Advanced Horror Techniques : When template gone wrong - Gibberish : Take your obfuscation skill to a higher level

          Learn from the mistakes of others, you may not live long enough to make them all yourself.

          1 Reply Last reply
          0
          • A asadullah ansari

            In your project, If you are using if condition like

            enum
            {
            Blue_c,
            Yellow_c,
            Red_c
            };
            int color;

            if( color == yellow_c)
            {
            .....
            ......
            }
            or
            if(color != Red_c)
            {
            ....
            .....
            }

            Now you know by mistake if you forget one = or ! means if(color = yellow_c) or if(color = Red_c) then no error will come and bug fixing cost for your projects So To avoid this cost you should use

            if(yellow_c == color)
            {
            .....
            ......
            }
            or
            if(Red_c != color)
            {
            ....
            .....
            }

            Now if you forgot to put one = ot ! then compilation error will come.. So this should be in coding standard to use like this...

            Truth Can'nt be changed

            C Offline
            C Offline
            CPallini
            wrote on last edited by
            #6

            Real C programmers (i.e. real men) don't use such girly tricks. They bravely make mistakes whenever is needed. ;P

            If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
            This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
            [My articles]

            A C 2 Replies Last reply
            0
            • A asadullah ansari

              In your project, If you are using if condition like

              enum
              {
              Blue_c,
              Yellow_c,
              Red_c
              };
              int color;

              if( color == yellow_c)
              {
              .....
              ......
              }
              or
              if(color != Red_c)
              {
              ....
              .....
              }

              Now you know by mistake if you forget one = or ! means if(color = yellow_c) or if(color = Red_c) then no error will come and bug fixing cost for your projects So To avoid this cost you should use

              if(yellow_c == color)
              {
              .....
              ......
              }
              or
              if(Red_c != color)
              {
              ....
              .....
              }

              Now if you forgot to put one = ot ! then compilation error will come.. So this should be in coding standard to use like this...

              Truth Can'nt be changed

              P Offline
              P Offline
              PIEBALDconsult
              wrote on last edited by
              #7

              Oh, a coding standards horror. That only works when comparing an Lvalue and an Rvalue, and if a programmer can remember to do that, then he can remember to use the correct operator in the first place. Newbies will continue to screw it up, and experienced programmers will continue to get it right the first time. One company I worked for did have that in the coding standard, but even the guy who defined the standards admitted that it was pretty useless. If it causes you trouble you could switch to D, which will throw an error if it's not done right (if I recall correctly).

              C 1 Reply Last reply
              0
              • A asadullah ansari

                In your project, If you are using if condition like

                enum
                {
                Blue_c,
                Yellow_c,
                Red_c
                };
                int color;

                if( color == yellow_c)
                {
                .....
                ......
                }
                or
                if(color != Red_c)
                {
                ....
                .....
                }

                Now you know by mistake if you forget one = or ! means if(color = yellow_c) or if(color = Red_c) then no error will come and bug fixing cost for your projects So To avoid this cost you should use

                if(yellow_c == color)
                {
                .....
                ......
                }
                or
                if(Red_c != color)
                {
                ....
                .....
                }

                Now if you forgot to put one = ot ! then compilation error will come.. So this should be in coding standard to use like this...

                Truth Can'nt be changed

                J Offline
                J Offline
                Joe Woodbury
                wrote on last edited by
                #8

                Yes, because actually looking at your warnings is apparently too difficult.

                Anyone who thinks he has a better idea of what's good for people than people do is a swine. - P.J. O'Rourke

                C 1 Reply Last reply
                0
                • A asadullah ansari

                  In your project, If you are using if condition like

                  enum
                  {
                  Blue_c,
                  Yellow_c,
                  Red_c
                  };
                  int color;

                  if( color == yellow_c)
                  {
                  .....
                  ......
                  }
                  or
                  if(color != Red_c)
                  {
                  ....
                  .....
                  }

                  Now you know by mistake if you forget one = or ! means if(color = yellow_c) or if(color = Red_c) then no error will come and bug fixing cost for your projects So To avoid this cost you should use

                  if(yellow_c == color)
                  {
                  .....
                  ......
                  }
                  or
                  if(Red_c != color)
                  {
                  ....
                  .....
                  }

                  Now if you forgot to put one = ot ! then compilation error will come.. So this should be in coding standard to use like this...

                  Truth Can'nt be changed

                  B Offline
                  B Offline
                  BadKarma
                  wrote on last edited by
                  #9

                  Ahh, those with negative men points could always use

                  #define equals ==
                  

                  which brings a nice touch to the code

                  int a = 3;
                  if( a equals 3)
                  {
                   ...
                  }
                  

                  But why stop here, just add the following

                  #define if if(
                  #define then ){
                  #define endif }
                  

                  And youre code will look like this

                  if a equals 3 then
                   ...
                  endif
                  

                  It somehows reminds me of another language, I just can't get my fingers on the name ...

                  Learn from the mistakes of others, you may not live long enough to make them all yourself.

                  N 1 Reply Last reply
                  0
                  • A asadullah ansari

                    In your project, If you are using if condition like

                    enum
                    {
                    Blue_c,
                    Yellow_c,
                    Red_c
                    };
                    int color;

                    if( color == yellow_c)
                    {
                    .....
                    ......
                    }
                    or
                    if(color != Red_c)
                    {
                    ....
                    .....
                    }

                    Now you know by mistake if you forget one = or ! means if(color = yellow_c) or if(color = Red_c) then no error will come and bug fixing cost for your projects So To avoid this cost you should use

                    if(yellow_c == color)
                    {
                    .....
                    ......
                    }
                    or
                    if(Red_c != color)
                    {
                    ....
                    .....
                    }

                    Now if you forgot to put one = ot ! then compilation error will come.. So this should be in coding standard to use like this...

                    Truth Can'nt be changed

                    N Offline
                    N Offline
                    Nagy Vilmos
                    wrote on last edited by
                    #10

                    You haven't dealt with object equality. I know as a random key monkey, it's very dificult for me to remember that objA == objB is not the same as objA.equals(objB) Can you provide the best answer. I have to get the bugs out of the LCG framework before Thursday!


                    Panic, Chaos, Destruction. My work here is done.

                    1 Reply Last reply
                    0
                    • A asadullah ansari

                      In your project, If you are using if condition like

                      enum
                      {
                      Blue_c,
                      Yellow_c,
                      Red_c
                      };
                      int color;

                      if( color == yellow_c)
                      {
                      .....
                      ......
                      }
                      or
                      if(color != Red_c)
                      {
                      ....
                      .....
                      }

                      Now you know by mistake if you forget one = or ! means if(color = yellow_c) or if(color = Red_c) then no error will come and bug fixing cost for your projects So To avoid this cost you should use

                      if(yellow_c == color)
                      {
                      .....
                      ......
                      }
                      or
                      if(Red_c != color)
                      {
                      ....
                      .....
                      }

                      Now if you forgot to put one = ot ! then compilation error will come.. So this should be in coding standard to use like this...

                      Truth Can'nt be changed

                      J Offline
                      J Offline
                      Johann Gerell
                      wrote on last edited by
                      #11

                      Guideline 1: Always compile cleanly on warning level 4.

                      -- Time you enjoy wasting is not wasted time - Bertrand Russel

                      N E 2 Replies Last reply
                      0
                      • C CPallini

                        Real C programmers (i.e. real men) don't use such girly tricks. They bravely make mistakes whenever is needed. ;P

                        If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
                        This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
                        [My articles]

                        A Offline
                        A Offline
                        asadullah ansari
                        wrote on last edited by
                        #12

                        I am not talking about a single or some person who can take care his code itself nicely. But when you will come to some big organization then Why they follows some process becausethey want minimize defects, minimize manpower,etc. So this small care can save some time .

                        Truth Can'nt be changed

                        C 1 Reply Last reply
                        0
                        • A asadullah ansari

                          I am not talking about a single or some person who can take care his code itself nicely. But when you will come to some big organization then Why they follows some process becausethey want minimize defects, minimize manpower,etc. So this small care can save some time .

                          Truth Can'nt be changed

                          C Offline
                          C Offline
                          CPallini
                          wrote on last edited by
                          #13

                          asadullah ansari wrote:

                          minimize manpower

                          Hence not a real-men company! BTW What is the point on minimizing manpower in software industry? Our work is creative after all, don't you agree? The Software Laborer :-D

                          If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
                          This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
                          [My articles]

                          L C 2 Replies Last reply
                          0
                          • B BadKarma

                            Ahh, those with negative men points could always use

                            #define equals ==
                            

                            which brings a nice touch to the code

                            int a = 3;
                            if( a equals 3)
                            {
                             ...
                            }
                            

                            But why stop here, just add the following

                            #define if if(
                            #define then ){
                            #define endif }
                            

                            And youre code will look like this

                            if a equals 3 then
                             ...
                            endif
                            

                            It somehows reminds me of another language, I just can't get my fingers on the name ...

                            Learn from the mistakes of others, you may not live long enough to make them all yourself.

                            N Offline
                            N Offline
                            Nemanja Trifunovic
                            wrote on last edited by
                            #14

                            LOL. I remember someone suggesting defines like this:

                            #define please
                            #define thanks

                            And the code would be much more pleasant to read:

                            please do {
                            ...
                            } while (i < imax);
                            thanks

                            Programming Blog utf8-cpp

                            R L 2 Replies Last reply
                            0
                            • J Johann Gerell

                              Guideline 1: Always compile cleanly on warning level 4.

                              -- Time you enjoy wasting is not wasted time - Bertrand Russel

                              N Offline
                              N Offline
                              Nemanja Trifunovic
                              wrote on last edited by
                              #15

                              Johann Gerell wrote:

                              Guideline 1: Always compile cleanly on warning level 4.

                              Gudeline 2: Turn on the option: "Treat warnings as errors".

                              Programming Blog utf8-cpp

                              E J 2 Replies Last reply
                              0
                              • N Nemanja Trifunovic

                                LOL. I remember someone suggesting defines like this:

                                #define please
                                #define thanks

                                And the code would be much more pleasant to read:

                                please do {
                                ...
                                } while (i < imax);
                                thanks

                                Programming Blog utf8-cpp

                                R Offline
                                R Offline
                                Robert Royall
                                wrote on last edited by
                                #16

                                Doesn't LOLCode do something similar to this?

                                HAI
                                CAN HAS STDIO?
                                PLZ OPEN FILE "LOLCATS.TXT"?
                                AWSUM THX
                                VISIBLE FILE
                                O NOES
                                INVISIBLE "ERROR!"
                                KTHXBYE

                                Imagine that you are hired to build a bridge over a river which gets slightly wider every day; sometimes it shrinks but nobody can predict when. Your client provides no concrete or steel, only timber and cut stone (but they won't tell you what kind). The coefficient of gravity changes randomly from hour to hour, as does the viscosity of air. Your only tools are a hacksaw, a chainsaw, a rubber mallet, and a length of rope. Welcome to my world. -Me explaining my job to an engineer

                                1 Reply Last reply
                                0
                                • A asadullah ansari

                                  In your project, If you are using if condition like

                                  enum
                                  {
                                  Blue_c,
                                  Yellow_c,
                                  Red_c
                                  };
                                  int color;

                                  if( color == yellow_c)
                                  {
                                  .....
                                  ......
                                  }
                                  or
                                  if(color != Red_c)
                                  {
                                  ....
                                  .....
                                  }

                                  Now you know by mistake if you forget one = or ! means if(color = yellow_c) or if(color = Red_c) then no error will come and bug fixing cost for your projects So To avoid this cost you should use

                                  if(yellow_c == color)
                                  {
                                  .....
                                  ......
                                  }
                                  or
                                  if(Red_c != color)
                                  {
                                  ....
                                  .....
                                  }

                                  Now if you forgot to put one = ot ! then compilation error will come.. So this should be in coding standard to use like this...

                                  Truth Can'nt be changed

                                  C Offline
                                  C Offline
                                  ClementsDan
                                  wrote on last edited by
                                  #17

                                  It's easier for me to remember the == than it is to remember to write the condition backwards.

                                  1 Reply Last reply
                                  0
                                  • A asadullah ansari

                                    In your project, If you are using if condition like

                                    enum
                                    {
                                    Blue_c,
                                    Yellow_c,
                                    Red_c
                                    };
                                    int color;

                                    if( color == yellow_c)
                                    {
                                    .....
                                    ......
                                    }
                                    or
                                    if(color != Red_c)
                                    {
                                    ....
                                    .....
                                    }

                                    Now you know by mistake if you forget one = or ! means if(color = yellow_c) or if(color = Red_c) then no error will come and bug fixing cost for your projects So To avoid this cost you should use

                                    if(yellow_c == color)
                                    {
                                    .....
                                    ......
                                    }
                                    or
                                    if(Red_c != color)
                                    {
                                    ....
                                    .....
                                    }

                                    Now if you forgot to put one = ot ! then compilation error will come.. So this should be in coding standard to use like this...

                                    Truth Can'nt be changed

                                    P Offline
                                    P Offline
                                    Pete OHanlon
                                    wrote on last edited by
                                    #18

                                    When posting to the forums, it's perfectly acceptable to post C/C++ questions in the C# forum because they've all got C somewhere in there name. Of course, this also means you can ask COBOL questions in there as well but that's the price you pay. Sod it - you can always throw Java questions in there because they've got curly brackets as well.

                                    Deja View - the feeling that you've seen this post before.

                                    My blog | My articles

                                    1 Reply Last reply
                                    0
                                    • N Nemanja Trifunovic

                                      Johann Gerell wrote:

                                      Guideline 1: Always compile cleanly on warning level 4.

                                      Gudeline 2: Turn on the option: "Treat warnings as errors".

                                      Programming Blog utf8-cpp

                                      E Offline
                                      E Offline
                                      ed welch
                                      wrote on last edited by
                                      #19

                                      Even better, you could use #pragma to convert that particular warning into an error (I think it's possible anyways)

                                      1 Reply Last reply
                                      0
                                      • J Johann Gerell

                                        Guideline 1: Always compile cleanly on warning level 4.

                                        -- Time you enjoy wasting is not wasted time - Bertrand Russel

                                        E Offline
                                        E Offline
                                        ed welch
                                        wrote on last edited by
                                        #20

                                        Actually, writing if (x = 0) ... does not generate any warning at all (at least in VS 2005). Looks like this is a flaw in the compilor.

                                        J P 2 Replies Last reply
                                        0
                                        • E ed welch

                                          Actually, writing if (x = 0) ... does not generate any warning at all (at least in VS 2005). Looks like this is a flaw in the compilor.

                                          J Offline
                                          J Offline
                                          Johann Gerell
                                          wrote on last edited by
                                          #21

                                          ed welch wrote:

                                          Actually, writing if (x = 0) ... does not generate any warning at all (at least in VS 2005).

                                          Of course it does. But you have to enable warning level 4 (as I pointed out in the "guideline") in the project property pages under C/C++ > General. Then you get this:

                                          warning C4706: assignment within conditional expression

                                          If you also set that warnings should be treated as errors, you get this:

                                          error C2220: warning treated as error - no 'object' file generated
                                          warning C4706: assignment within conditional expression

                                          and that way you just cannot miss the assignment.

                                          -- Time you enjoy wasting is not wasted time - Bertrand Russel

                                          A 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