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. Straight from the horse's mouth

Straight from the horse's mouth

Scheduled Pinned Locked Moved The Weird and The Wonderful
tutorialquestioncareer
35 Posts 23 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.
  • R Offline
    R Offline
    Rob Grainger
    wrote on last edited by
    #1

    I begin to understand where redundancy in code comes from. The following example is from the Windows Phone Development material on MSDN:

    popToSelectedButton.IsEnabled = (historyListBox.SelectedItems.Count > 0) ? true : false;

    OK, its harmless enough, but why on earth do people feel it necessary to explicitly state the result of a logical expression. If a programmer doesn't get logic, it's probably time to consider another career choice.

    P B L V F 15 Replies Last reply
    0
    • R Rob Grainger

      I begin to understand where redundancy in code comes from. The following example is from the Windows Phone Development material on MSDN:

      popToSelectedButton.IsEnabled = (historyListBox.SelectedItems.Count > 0) ? true : false;

      OK, its harmless enough, but why on earth do people feel it necessary to explicitly state the result of a logical expression. If a programmer doesn't get logic, it's probably time to consider another career choice.

      P Offline
      P Offline
      Peter_in_2780
      wrote on last edited by
      #2

      Sure you've got the correct end of the horse? Cheers, Peter

      Software rusts. Simon Stephenson, ca 1994.

      1 Reply Last reply
      0
      • R Rob Grainger

        I begin to understand where redundancy in code comes from. The following example is from the Windows Phone Development material on MSDN:

        popToSelectedButton.IsEnabled = (historyListBox.SelectedItems.Count > 0) ? true : false;

        OK, its harmless enough, but why on earth do people feel it necessary to explicitly state the result of a logical expression. If a programmer doesn't get logic, it's probably time to consider another career choice.

        B Offline
        B Offline
        Bernhard Hiller
        wrote on last edited by
        #3

        The programmer was so proud he knew how to use the ?: operators...

        1 Reply Last reply
        0
        • R Rob Grainger

          I begin to understand where redundancy in code comes from. The following example is from the Windows Phone Development material on MSDN:

          popToSelectedButton.IsEnabled = (historyListBox.SelectedItems.Count > 0) ? true : false;

          OK, its harmless enough, but why on earth do people feel it necessary to explicitly state the result of a logical expression. If a programmer doesn't get logic, it's probably time to consider another career choice.

          L Offline
          L Offline
          Lost User
          wrote on last edited by
          #4

          Rob Grainger wrote:

          If a programmer doesn't get logic, it's probably time to consider another career choice.

          Do you know him? Perhaps he already had more of a career than you think. What if he's just an old C/C++ veteran and never got used to having the conditions result in boolean values (instead of 0 and something non-zero)? Without having looked at the disassembly: Does the compiler not eliminate such simple things? In that case I would usually say that a difference, which makes no difference, is no difference. 'Real' redundancy usually occurs in heaps of spaghetti code where the programmer was unable to separate the tasks at hand and started to copy and paste code blocks where when he became unable to untangle his own mess.

          I'm invincible, I can't be vinced

          B R G J 4 Replies Last reply
          0
          • L Lost User

            Rob Grainger wrote:

            If a programmer doesn't get logic, it's probably time to consider another career choice.

            Do you know him? Perhaps he already had more of a career than you think. What if he's just an old C/C++ veteran and never got used to having the conditions result in boolean values (instead of 0 and something non-zero)? Without having looked at the disassembly: Does the compiler not eliminate such simple things? In that case I would usually say that a difference, which makes no difference, is no difference. 'Real' redundancy usually occurs in heaps of spaghetti code where the programmer was unable to separate the tasks at hand and started to copy and paste code blocks where when he became unable to untangle his own mess.

            I'm invincible, I can't be vinced

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

            CDP1802 wrote:

            What if he's just an old C/C++ veteran and never got used to having the conditions result in boolean values (instead of 0 and something non-zero)?

            By definition, if you can use something in that form in a ?: clause, you can also use it anywhere else the language expects a boolean.

            L 1 Reply Last reply
            0
            • B BobJanova

              CDP1802 wrote:

              What if he's just an old C/C++ veteran and never got used to having the conditions result in boolean values (instead of 0 and something non-zero)?

              By definition, if you can use something in that form in a ?: clause, you can also use it anywhere else the language expects a boolean.

              L Offline
              L Offline
              Lost User
              wrote on last edited by
              #6

              In C/C++ there is no boolean datatype and if you used some kind of definitions for boolean values, you had to 'translate' your results in similar ways as shown here. Usually I hid such things in preprocessor macros. Now we do have boolean types and the conditions evaluate to a boolean value, but sometimes people keep working as they are used to.

              I'm invincible, I can't be vinced

              B R F 3 Replies Last reply
              0
              • L Lost User

                In C/C++ there is no boolean datatype and if you used some kind of definitions for boolean values, you had to 'translate' your results in similar ways as shown here. Usually I hid such things in preprocessor macros. Now we do have boolean types and the conditions evaluate to a boolean value, but sometimes people keep working as they are used to.

                I'm invincible, I can't be vinced

                B Offline
                B Offline
                BobJanova
                wrote on last edited by
                #7

                Yes, but my point is, if you can translate it with a ?:

                BOOL something = condition ? TRUE : FALSE

                ... then you could also do

                if(condition) ...

                ... wherever you want to use the condition you're trying to assign to something. If the original statement had been

                BOOL something = (FALSE != condition) ? TRUE : FALSE

                ... then this would make sense.

                1 Reply Last reply
                0
                • L Lost User

                  In C/C++ there is no boolean datatype and if you used some kind of definitions for boolean values, you had to 'translate' your results in similar ways as shown here. Usually I hid such things in preprocessor macros. Now we do have boolean types and the conditions evaluate to a boolean value, but sometimes people keep working as they are used to.

                  I'm invincible, I can't be vinced

                  R Offline
                  R Offline
                  Rob Grainger
                  wrote on last edited by
                  #8

                  CDP1802 wrote:

                  In C/C++ there is no boolean datatype

                  You evidently can't have programmed in C++ for quite a while, if at all. The "bool" data type has been there since inception, and the relational operators (for built-in types - with operator overloading all bets are off) are defined, by the standard (section 5.9 in the draft I just checked - C++ draft standard[^]), to return bool's. Besides, as may be inferred from the fact this is in the Windows Phone SDK, this is not C/C++ code, but C#.

                  1 Reply Last reply
                  0
                  • L Lost User

                    Rob Grainger wrote:

                    If a programmer doesn't get logic, it's probably time to consider another career choice.

                    Do you know him? Perhaps he already had more of a career than you think. What if he's just an old C/C++ veteran and never got used to having the conditions result in boolean values (instead of 0 and something non-zero)? Without having looked at the disassembly: Does the compiler not eliminate such simple things? In that case I would usually say that a difference, which makes no difference, is no difference. 'Real' redundancy usually occurs in heaps of spaghetti code where the programmer was unable to separate the tasks at hand and started to copy and paste code blocks where when he became unable to untangle his own mess.

                    I'm invincible, I can't be vinced

                    R Offline
                    R Offline
                    Rob Grainger
                    wrote on last edited by
                    #9

                    As I stated in my original post "OK, its harmless enough", maybe you didn't read that far. I'd hope the compiler would eliminate this, I'd be surprised if it didn't. However, you can say the same for a myriad of things, such as unused local variables. Should I stop removing such things from my code - after all the compiler will sort out the mess for me, never mind the poor developer's who have to try and understand my code. I'm sure the original writer is doing OK - he's writing code for Microsoft, so presumably is up to the task, but my point was that you'd hope tutorial code would illustrate good coding practices.

                    D L 2 Replies Last reply
                    0
                    • L Lost User

                      Rob Grainger wrote:

                      If a programmer doesn't get logic, it's probably time to consider another career choice.

                      Do you know him? Perhaps he already had more of a career than you think. What if he's just an old C/C++ veteran and never got used to having the conditions result in boolean values (instead of 0 and something non-zero)? Without having looked at the disassembly: Does the compiler not eliminate such simple things? In that case I would usually say that a difference, which makes no difference, is no difference. 'Real' redundancy usually occurs in heaps of spaghetti code where the programmer was unable to separate the tasks at hand and started to copy and paste code blocks where when he became unable to untangle his own mess.

                      I'm invincible, I can't be vinced

                      G Offline
                      G Offline
                      GibbleCH
                      wrote on last edited by
                      #10

                      Code is written for people, not computers.

                      1 Reply Last reply
                      0
                      • R Rob Grainger

                        As I stated in my original post "OK, its harmless enough", maybe you didn't read that far. I'd hope the compiler would eliminate this, I'd be surprised if it didn't. However, you can say the same for a myriad of things, such as unused local variables. Should I stop removing such things from my code - after all the compiler will sort out the mess for me, never mind the poor developer's who have to try and understand my code. I'm sure the original writer is doing OK - he's writing code for Microsoft, so presumably is up to the task, but my point was that you'd hope tutorial code would illustrate good coding practices.

                        D Offline
                        D Offline
                        Dan Neely
                        wrote on last edited by
                        #11

                        You should get resharper to find and remove them from your code for you.

                        Did you ever see history portrayed as an old man with a wise brow and pulseless heart, waging all things in the balance of reason? Is not rather the genius of history like an eternal, imploring maiden, full of fire, with a burning heart and flaming soul, humanly warm and humanly beautiful? --Zachris Topelius Training a telescope on one’s own belly button will only reveal lint. You like that? You go right on staring at it. I prefer looking at galaxies. -- Sarah Hoyt

                        M 1 Reply Last reply
                        0
                        • R Rob Grainger

                          I begin to understand where redundancy in code comes from. The following example is from the Windows Phone Development material on MSDN:

                          popToSelectedButton.IsEnabled = (historyListBox.SelectedItems.Count > 0) ? true : false;

                          OK, its harmless enough, but why on earth do people feel it necessary to explicitly state the result of a logical expression. If a programmer doesn't get logic, it's probably time to consider another career choice.

                          V Offline
                          V Offline
                          Vladimir Svyatski
                          wrote on last edited by
                          #12

                          I have seen such stuff many, many times. They always claim that such approach makes it "easier to read". But the question arises: "For whom?" Don't want to answer, because it will be abusive for some. But writing such sort of a code is the same (yes, it is) as putting the caption "car" on a car (you can make up more examples if you wish). Thanks, I noticed :)

                          1 Reply Last reply
                          0
                          • L Lost User

                            In C/C++ there is no boolean datatype and if you used some kind of definitions for boolean values, you had to 'translate' your results in similar ways as shown here. Usually I hid such things in preprocessor macros. Now we do have boolean types and the conditions evaluate to a boolean value, but sometimes people keep working as they are used to.

                            I'm invincible, I can't be vinced

                            F Offline
                            F Offline
                            Frank Peelo
                            wrote on last edited by
                            #13

                            "if you used some kind of definitions for boolean values, you had to 'translate' your results in similar ways as shown here." Not true! In C[1], the expression is false if it's 0, true otherwise. You NEVER compare to a specific non-false value. You can use a definition for a non-false value, as a "sample" true to return from functions or to set variables, but it is very bad practise to compare anything to that value. This construct may be harmless enough in C#, but a C programmer who used this construct should be larted. Hard. Otherwise he'll start comparing things to whatever value the identifier "true" value, and end up with bugs because in C "true" is just not unique! [1] I don't use C++, but it does have a boolean datatype

                            1 Reply Last reply
                            0
                            • R Rob Grainger

                              I begin to understand where redundancy in code comes from. The following example is from the Windows Phone Development material on MSDN:

                              popToSelectedButton.IsEnabled = (historyListBox.SelectedItems.Count > 0) ? true : false;

                              OK, its harmless enough, but why on earth do people feel it necessary to explicitly state the result of a logical expression. If a programmer doesn't get logic, it's probably time to consider another career choice.

                              F Offline
                              F Offline
                              Fran Porretto
                              wrote on last edited by
                              #14

                              This particular redundancy is a bit crude, but I've seen others that, while technically just as redundant, struck me as quite forgivable. The dividing line for me is whether the redundancy aids legibility or maintainability. If it contributes to either of those virtues, I'm inclined to shrug.

                              Of course, "cut-and-paste" redundancies, which replicate code merely to avoid having to think about generality and modularization, are not forgivable, as they degrade maintainability. But that's grammar-school stuff; a programmer who doesn't grasp it should consider hanging it up and going to work in a coal mine.

                              (This message is programming you in ways you cannot detect. Be afraid.)

                              1 Reply Last reply
                              0
                              • L Lost User

                                Rob Grainger wrote:

                                If a programmer doesn't get logic, it's probably time to consider another career choice.

                                Do you know him? Perhaps he already had more of a career than you think. What if he's just an old C/C++ veteran and never got used to having the conditions result in boolean values (instead of 0 and something non-zero)? Without having looked at the disassembly: Does the compiler not eliminate such simple things? In that case I would usually say that a difference, which makes no difference, is no difference. 'Real' redundancy usually occurs in heaps of spaghetti code where the programmer was unable to separate the tasks at hand and started to copy and paste code blocks where when he became unable to untangle his own mess.

                                I'm invincible, I can't be vinced

                                J Offline
                                J Offline
                                Jeremy Hutchinson
                                wrote on last edited by
                                #15

                                May I just point out that C++ is a different language? Why would a C++ veteran be given a pass on something like this? If I started doing things in C# because that's the way we had to do them in VB6 or JavaScript, I would get laughed out of this forum. I don't care if the compiler optimizes this away, it's the fact that it's there to begin with that is the problem.

                                1 Reply Last reply
                                0
                                • R Rob Grainger

                                  I begin to understand where redundancy in code comes from. The following example is from the Windows Phone Development material on MSDN:

                                  popToSelectedButton.IsEnabled = (historyListBox.SelectedItems.Count > 0) ? true : false;

                                  OK, its harmless enough, but why on earth do people feel it necessary to explicitly state the result of a logical expression. If a programmer doesn't get logic, it's probably time to consider another career choice.

                                  L Offline
                                  L Offline
                                  Lost User
                                  wrote on last edited by
                                  #16

                                  Redundancy in code redundancy

                                  1 Reply Last reply
                                  0
                                  • R Rob Grainger

                                    I begin to understand where redundancy in code comes from. The following example is from the Windows Phone Development material on MSDN:

                                    popToSelectedButton.IsEnabled = (historyListBox.SelectedItems.Count > 0) ? true : false;

                                    OK, its harmless enough, but why on earth do people feel it necessary to explicitly state the result of a logical expression. If a programmer doesn't get logic, it's probably time to consider another career choice.

                                    B Offline
                                    B Offline
                                    BrainiacV
                                    wrote on last edited by
                                    #17

                                    The value of true may change.

                                    Psychosis at 10 Film at 11 Those who do not remember the past, are doomed to repeat it. Those who do not remember the past, cannot build upon it.

                                    1 Reply Last reply
                                    0
                                    • D Dan Neely

                                      You should get resharper to find and remove them from your code for you.

                                      Did you ever see history portrayed as an old man with a wise brow and pulseless heart, waging all things in the balance of reason? Is not rather the genius of history like an eternal, imploring maiden, full of fire, with a burning heart and flaming soul, humanly warm and humanly beautiful? --Zachris Topelius Training a telescope on one’s own belly button will only reveal lint. You like that? You go right on staring at it. I prefer looking at galaxies. -- Sarah Hoyt

                                      M Offline
                                      M Offline
                                      Marc Greiner at home
                                      wrote on last edited by
                                      #18

                                      CodeRush from DevExpress does that too.

                                      1 Reply Last reply
                                      0
                                      • R Rob Grainger

                                        As I stated in my original post "OK, its harmless enough", maybe you didn't read that far. I'd hope the compiler would eliminate this, I'd be surprised if it didn't. However, you can say the same for a myriad of things, such as unused local variables. Should I stop removing such things from my code - after all the compiler will sort out the mess for me, never mind the poor developer's who have to try and understand my code. I'm sure the original writer is doing OK - he's writing code for Microsoft, so presumably is up to the task, but my point was that you'd hope tutorial code would illustrate good coding practices.

                                        L Offline
                                        L Offline
                                        Lost User
                                        wrote on last edited by
                                        #19

                                        In this case it's probably not worth getting angry over. Look what the compiler made out of this little test with a false condition:

                                                test = (1 == 0) ? true : false;
                                        

                                        00000037 xor edx,edx
                                        00000039 mov dword ptr [ebp-40h],edx

                                        It even pulled the old XOR trick out of the hat to set EDX to 0 :) It effectively realized that the condition will always be false and simply copied 0 into the variable. Seriously, coding practices (good or bad, old or new) may become problematic when they are used because somebody said so or because they have always been used. Good practices and rules are not a good substitute for knowing (or being able to verify) what the compiler will make of your code. I had the dubious pleasure of working in a 'best practices' team recently and do not think very much about their religious belief in their rules and that nothing can go wrong as long as they firmly hold onto them. The gray mass in their heads is not just there to keep their ears apart :)

                                        I'm invincible, I can't be vinced

                                        R 1 Reply Last reply
                                        0
                                        • R Rob Grainger

                                          I begin to understand where redundancy in code comes from. The following example is from the Windows Phone Development material on MSDN:

                                          popToSelectedButton.IsEnabled = (historyListBox.SelectedItems.Count > 0) ? true : false;

                                          OK, its harmless enough, but why on earth do people feel it necessary to explicitly state the result of a logical expression. If a programmer doesn't get logic, it's probably time to consider another career choice.

                                          M Offline
                                          M Offline
                                          Massimo Perrone
                                          wrote on last edited by
                                          #20

                                          That way, ternary operator sucks a bit less. :)

                                          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