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. Multiple returns from methods or clean code flow

Multiple returns from methods or clean code flow

Scheduled Pinned Locked Moved The Lounge
questiondiscussioncryptographycollaborationhelp
85 Posts 40 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.
  • F Forogar

    I have just had a heated argument cage fight lively discussion with some of my team members about ReSharper's suggestion of refactoring code to replace nested ifs with a series of multiple early return statements. This caused horribly messy code that ReSharper actually described in it's help as "more readable"! Using a version of their example code (which is a lot simpler than the actual code in question):

    void SomeFunction(SomeThing s)
    {
    if (s != null)
    {
    if (s.Thing != null)
    {
    // Do Some Process with s.Thing
    .
    .
    .
    }
    }
    }

    becomes:

    void SomeFunction(SomeThing s)
    {
    if (s == null) return
    if (s.Thing == null) return;
    // Do Some Process with s.Thing
    .
    .
    .
    }

    This makes a complete hash of the natural flow of the code and introduces an execution statement (return) on the same line as the "if" which is bad coding practice, and then does it again, and then drops though to do some actual processing. If I was to refactor the code it would do this:

    void SomeFunction(SomeThing s)
    {
    if (s != null && s.Thing != null)
    {
    // Do Some Process with s.Thing
    .
    .
    .
    }
    }

    or possibly:

    void SomeFunction(SomeThing s)
    {
    if (s?.Thing != null)
    {
    // Do Some Process with s.Thing
    .
    .
    .
    }
    }

    Which is a lot cleaner! ...and this isn't even considering a method that returns a value of some sort. Opinions?

    - I would love to change the world, but they won’t give me the source code.

    C Offline
    C Offline
    CodeWraith
    wrote on last edited by
    #14

    Simply do it how you think it's ok. As long as it's only a question of preferences, I see no salomonian compromise. Why? Let's assume you can keep the method short and to the point, with only few conditions that 'spaghettify' the code. In that case I hope that all people involved are intelligent enough to read the code, despite it not having their preferred format. In the other case, hopefully rare, where you have no choice and the method gets a little longer and has many if/else conditions, then religiously trying to put it in a certain format will most probably 'spaghettify' it even more and make it even harder to understand. That's why I always prefer good judgement over religiously (meaning thoughtlessly) enforcing 'standards' at all cost. Whose standards? Those of the team as a common ground or those of a few beaurocrats who never find an end? Been there, done that. I was once in charge of writing the 'rulebook' and code review. It kept getting longer every week. Rules, more rules, exceptions to the rules and then of course alternate rules. In the end it was always one or two people who turned the code review into a discussion about their personal preferences while the rest of the team started to ignore the whole worthless circus and automatically getting the buerocrats off their backs by giving them so much to freak out about that even they could not keep up with inventing more 'standards'. If those idiots want someone to type exactly what they want, why don't they get themselves a secretary?

    I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

    1 Reply Last reply
    0
    • F Forogar

      I have just had a heated argument cage fight lively discussion with some of my team members about ReSharper's suggestion of refactoring code to replace nested ifs with a series of multiple early return statements. This caused horribly messy code that ReSharper actually described in it's help as "more readable"! Using a version of their example code (which is a lot simpler than the actual code in question):

      void SomeFunction(SomeThing s)
      {
      if (s != null)
      {
      if (s.Thing != null)
      {
      // Do Some Process with s.Thing
      .
      .
      .
      }
      }
      }

      becomes:

      void SomeFunction(SomeThing s)
      {
      if (s == null) return
      if (s.Thing == null) return;
      // Do Some Process with s.Thing
      .
      .
      .
      }

      This makes a complete hash of the natural flow of the code and introduces an execution statement (return) on the same line as the "if" which is bad coding practice, and then does it again, and then drops though to do some actual processing. If I was to refactor the code it would do this:

      void SomeFunction(SomeThing s)
      {
      if (s != null && s.Thing != null)
      {
      // Do Some Process with s.Thing
      .
      .
      .
      }
      }

      or possibly:

      void SomeFunction(SomeThing s)
      {
      if (s?.Thing != null)
      {
      // Do Some Process with s.Thing
      .
      .
      .
      }
      }

      Which is a lot cleaner! ...and this isn't even considering a method that returns a value of some sort. Opinions?

      - I would love to change the world, but they won’t give me the source code.

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

      The (professional) opinion is that humans work better with "positive" statements vs deciphering compound negatives. I will even resort to: if ( a && b && c ){ // continue. } else { return; } ... for myself. ("Early returns" probably run contrary to the notion of "diving into the code"; but since code should not run more than "a page", "diving" implies a bigger problem).

      "(I) am amazed to see myself here rather than there ... now rather than then". ― Blaise Pascal

      1 Reply Last reply
      0
      • F Forogar

        I have just had a heated argument cage fight lively discussion with some of my team members about ReSharper's suggestion of refactoring code to replace nested ifs with a series of multiple early return statements. This caused horribly messy code that ReSharper actually described in it's help as "more readable"! Using a version of their example code (which is a lot simpler than the actual code in question):

        void SomeFunction(SomeThing s)
        {
        if (s != null)
        {
        if (s.Thing != null)
        {
        // Do Some Process with s.Thing
        .
        .
        .
        }
        }
        }

        becomes:

        void SomeFunction(SomeThing s)
        {
        if (s == null) return
        if (s.Thing == null) return;
        // Do Some Process with s.Thing
        .
        .
        .
        }

        This makes a complete hash of the natural flow of the code and introduces an execution statement (return) on the same line as the "if" which is bad coding practice, and then does it again, and then drops though to do some actual processing. If I was to refactor the code it would do this:

        void SomeFunction(SomeThing s)
        {
        if (s != null && s.Thing != null)
        {
        // Do Some Process with s.Thing
        .
        .
        .
        }
        }

        or possibly:

        void SomeFunction(SomeThing s)
        {
        if (s?.Thing != null)
        {
        // Do Some Process with s.Thing
        .
        .
        .
        }
        }

        Which is a lot cleaner! ...and this isn't even considering a method that returns a value of some sort. Opinions?

        - I would love to change the world, but they won’t give me the source code.

        Z Offline
        Z Offline
        ZurdoDev
        wrote on last edited by
        #16

        I believe I am in the minority on this but I prefer one single return statement. Multiple returns adds unnecessary confusion. For example, if you put a breakpoint near the end of a function and it never hits it may be because of the early returns so you have to go hunting around to find out what's going on. One return.

        Social Media - A platform that makes it easier for the crazies to find each other. Everyone is born right handed. Only the strongest overcome it. Fight for left-handed rights and hand equality.

        L C M 3 Replies Last reply
        0
        • L Lost User

          I actually sometimes throw exceptions instead of just return and yes I prefer strongly the early returns. It's more modular than the nested hell of mess. Especially when multiple people add crap within a particular branch of ifs. I looked at the source code of DOOM. John Carmack uses early returns. That should settle it.

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

          Urban Cricket wrote:

          John Carmack uses early returns.

          Looking at my bookshelf: The Graphics Programming Black Book, by Michael Abrash and with a foreword by John Carmack. Fearsomely thick tome, full of how to write fast graphics code. That kind of processor cycle counting on a 386 or 486 is outdated, while the algorithmic optimizations remain as current as ever, especially if you are able to delegate them to the graphics processor. Early returns as a way to waste no processor cycle too much in a function is only rarely important anymore.

          I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

          L S 2 Replies Last reply
          0
          • F Forogar

            Layout can help a lot:

            public bool someMethod(int valueA, bool Valueb, bool ValueC)
            {
            var output = DoSomethingElse(ValueA, ValueB)
            ? RunAnotherMethod(ValueA, output.SOmething)
            : DoAnotherMethod(ValueB, ValueC)
            ? RunAthoerMethod(ValueB, output.SomethingElse)
            : DoYetAnotherMethod(ValueA, ValueC)
            ...etc.
            }

            - I would love to change the world, but they won’t give me the source code.

            C Offline
            C Offline
            CodeWraith
            wrote on last edited by
            #18

            Still: Yuck!

            I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

            C 1 Reply Last reply
            0
            • Z ZurdoDev

              I believe I am in the minority on this but I prefer one single return statement. Multiple returns adds unnecessary confusion. For example, if you put a breakpoint near the end of a function and it never hits it may be because of the early returns so you have to go hunting around to find out what's going on. One return.

              Social Media - A platform that makes it easier for the crazies to find each other. Everyone is born right handed. Only the strongest overcome it. Fight for left-handed rights and hand equality.

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

              Putting a break point that does not get hit where you expect it to only implies that one does not understand the program flow; not that there could be "too many returns". Without a try-catch block everywhere, every exception amounts to an "early return". Also, "early returns" facilitate the returning of different "condition codes"; instead of "tramping" them along. A la IBM; 0 - Good 4 - Good with conditions 8 - Warning 16 - Oh Oh ...

              "(I) am amazed to see myself here rather than there ... now rather than then". ― Blaise Pascal

              Z 1 Reply Last reply
              0
              • L Lost User

                Putting a break point that does not get hit where you expect it to only implies that one does not understand the program flow; not that there could be "too many returns". Without a try-catch block everywhere, every exception amounts to an "early return". Also, "early returns" facilitate the returning of different "condition codes"; instead of "tramping" them along. A la IBM; 0 - Good 4 - Good with conditions 8 - Warning 16 - Oh Oh ...

                "(I) am amazed to see myself here rather than there ... now rather than then". ― Blaise Pascal

                Z Offline
                Z Offline
                ZurdoDev
                wrote on last edited by
                #20

                Gerry Schmitz wrote:

                only implies that one does not understand the program flow;

                Exactly! :-D But it's very easy to assume the code is failing down near the bottom of the function and therefore you put the breakpoint there because you don't want to step through all of it.

                Social Media - A platform that makes it easier for the crazies to find each other. Everyone is born right handed. Only the strongest overcome it. Fight for left-handed rights and hand equality.

                1 Reply Last reply
                0
                • F Forogar

                  I have just had a heated argument cage fight lively discussion with some of my team members about ReSharper's suggestion of refactoring code to replace nested ifs with a series of multiple early return statements. This caused horribly messy code that ReSharper actually described in it's help as "more readable"! Using a version of their example code (which is a lot simpler than the actual code in question):

                  void SomeFunction(SomeThing s)
                  {
                  if (s != null)
                  {
                  if (s.Thing != null)
                  {
                  // Do Some Process with s.Thing
                  .
                  .
                  .
                  }
                  }
                  }

                  becomes:

                  void SomeFunction(SomeThing s)
                  {
                  if (s == null) return
                  if (s.Thing == null) return;
                  // Do Some Process with s.Thing
                  .
                  .
                  .
                  }

                  This makes a complete hash of the natural flow of the code and introduces an execution statement (return) on the same line as the "if" which is bad coding practice, and then does it again, and then drops though to do some actual processing. If I was to refactor the code it would do this:

                  void SomeFunction(SomeThing s)
                  {
                  if (s != null && s.Thing != null)
                  {
                  // Do Some Process with s.Thing
                  .
                  .
                  .
                  }
                  }

                  or possibly:

                  void SomeFunction(SomeThing s)
                  {
                  if (s?.Thing != null)
                  {
                  // Do Some Process with s.Thing
                  .
                  .
                  .
                  }
                  }

                  Which is a lot cleaner! ...and this isn't even considering a method that returns a value of some sort. Opinions?

                  - I would love to change the world, but they won’t give me the source code.

                  M Offline
                  M Offline
                  MarkTJohnson
                  wrote on last edited by
                  #21

                  I prefer one return but if I am working with people who go ape-sunshine about it I will defer to their preference. Life is too short to wage war about that. All the while muttering under my breathe that their way leads to confusion and makes debugging more difficult like someone else already pointed out. I'm passive-agressive that way.

                  1 Reply Last reply
                  0
                  • Z ZurdoDev

                    I believe I am in the minority on this but I prefer one single return statement. Multiple returns adds unnecessary confusion. For example, if you put a breakpoint near the end of a function and it never hits it may be because of the early returns so you have to go hunting around to find out what's going on. One return.

                    Social Media - A platform that makes it easier for the crazies to find each other. Everyone is born right handed. Only the strongest overcome it. Fight for left-handed rights and hand equality.

                    C Offline
                    C Offline
                    CodeWraith
                    wrote on last edited by
                    #22

                    Nice and well, until you sit in the middle of several levels of conditions, something goes wrong and you want to get out of there. What then? Awkward nested if/else blocks? Or do we just make use of the good old GOTO to hop to your single return at the end? I do exactly that often enough in assembly programs, just because I need a single return as a point where I clean up the stack frame before actually returning. I don't really see the point if it's only a matter of principle.

                    I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

                    Z K 2 Replies Last reply
                    0
                    • F Forogar

                      I have just had a heated argument cage fight lively discussion with some of my team members about ReSharper's suggestion of refactoring code to replace nested ifs with a series of multiple early return statements. This caused horribly messy code that ReSharper actually described in it's help as "more readable"! Using a version of their example code (which is a lot simpler than the actual code in question):

                      void SomeFunction(SomeThing s)
                      {
                      if (s != null)
                      {
                      if (s.Thing != null)
                      {
                      // Do Some Process with s.Thing
                      .
                      .
                      .
                      }
                      }
                      }

                      becomes:

                      void SomeFunction(SomeThing s)
                      {
                      if (s == null) return
                      if (s.Thing == null) return;
                      // Do Some Process with s.Thing
                      .
                      .
                      .
                      }

                      This makes a complete hash of the natural flow of the code and introduces an execution statement (return) on the same line as the "if" which is bad coding practice, and then does it again, and then drops though to do some actual processing. If I was to refactor the code it would do this:

                      void SomeFunction(SomeThing s)
                      {
                      if (s != null && s.Thing != null)
                      {
                      // Do Some Process with s.Thing
                      .
                      .
                      .
                      }
                      }

                      or possibly:

                      void SomeFunction(SomeThing s)
                      {
                      if (s?.Thing != null)
                      {
                      // Do Some Process with s.Thing
                      .
                      .
                      .
                      }
                      }

                      Which is a lot cleaner! ...and this isn't even considering a method that returns a value of some sort. Opinions?

                      - I would love to change the world, but they won’t give me the source code.

                      M Offline
                      M Offline
                      Maximilien
                      wrote on last edited by
                      #23

                      Multiple returns can lead to resource leaks if not handled properly (think of RAII)

                      I'd rather be phishing!

                      F M 2 Replies Last reply
                      0
                      • C CodeWraith

                        Urban Cricket wrote:

                        John Carmack uses early returns.

                        Looking at my bookshelf: The Graphics Programming Black Book, by Michael Abrash and with a foreword by John Carmack. Fearsomely thick tome, full of how to write fast graphics code. That kind of processor cycle counting on a 386 or 486 is outdated, while the algorithmic optimizations remain as current as ever, especially if you are able to delegate them to the graphics processor. Early returns as a way to waste no processor cycle too much in a function is only rarely important anymore.

                        I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

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

                        That is true, but it has other benefits too. Generally as a principle I prefer within a piece of code, if the task is done within a branch it should exit immediately. Later these blocks can be moved out to separate methods or classes. I work in a team where a couple of the members like to add thousands of lines of code in a single method and management tends to let us do whatever we want. So on one hand I really like being left to do what I want in terms of programming style, on the other hand they don't let me lecture others on how to code Usually I start a project, write the skeleton and after the first version they assign others to add features, which lead to those 1000 lines functions.Early returns help me with that. I just take that additional code and put it in a separate method or class :)

                        C 1 Reply Last reply
                        0
                        • C CodeWraith

                          Nice and well, until you sit in the middle of several levels of conditions, something goes wrong and you want to get out of there. What then? Awkward nested if/else blocks? Or do we just make use of the good old GOTO to hop to your single return at the end? I do exactly that often enough in assembly programs, just because I need a single return as a point where I clean up the stack frame before actually returning. I don't really see the point if it's only a matter of principle.

                          I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

                          Z Offline
                          Z Offline
                          ZurdoDev
                          wrote on last edited by
                          #25

                          CodeWraith wrote:

                          something goes wrong and you want to get out of there

                          That's when you throw an exception.

                          CodeWraith wrote:

                          Awkward nested if/else blocks?

                          Maybe breaking things into functions would be better.

                          Social Media - A platform that makes it easier for the crazies to find each other. Everyone is born right handed. Only the strongest overcome it. Fight for left-handed rights and hand equality.

                          C 1 Reply Last reply
                          0
                          • M Maximilien

                            Multiple returns can lead to resource leaks if not handled properly (think of RAII)

                            I'd rather be phishing!

                            F Offline
                            F Offline
                            Forogar
                            wrote on last edited by
                            #26

                            Yes! Very good point. :thumbsup::thumbsup::thumbsup::cool:

                            - I would love to change the world, but they won’t give me the source code.

                            1 Reply Last reply
                            0
                            • L Lost User

                              That is true, but it has other benefits too. Generally as a principle I prefer within a piece of code, if the task is done within a branch it should exit immediately. Later these blocks can be moved out to separate methods or classes. I work in a team where a couple of the members like to add thousands of lines of code in a single method and management tends to let us do whatever we want. So on one hand I really like being left to do what I want in terms of programming style, on the other hand they don't let me lecture others on how to code Usually I start a project, write the skeleton and after the first version they assign others to add features, which lead to those 1000 lines functions.Early returns help me with that. I just take that additional code and put it in a separate method or class :)

                              C Offline
                              C Offline
                              CodeWraith
                              wrote on last edited by
                              #27

                              Such long functions can be a pain, no matter what. Early returns definitely are better to follow than deeply nested code with some code blocks being dozens or even hundreds of lines long.

                              I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

                              1 Reply Last reply
                              0
                              • F Forogar

                                I have just had a heated argument cage fight lively discussion with some of my team members about ReSharper's suggestion of refactoring code to replace nested ifs with a series of multiple early return statements. This caused horribly messy code that ReSharper actually described in it's help as "more readable"! Using a version of their example code (which is a lot simpler than the actual code in question):

                                void SomeFunction(SomeThing s)
                                {
                                if (s != null)
                                {
                                if (s.Thing != null)
                                {
                                // Do Some Process with s.Thing
                                .
                                .
                                .
                                }
                                }
                                }

                                becomes:

                                void SomeFunction(SomeThing s)
                                {
                                if (s == null) return
                                if (s.Thing == null) return;
                                // Do Some Process with s.Thing
                                .
                                .
                                .
                                }

                                This makes a complete hash of the natural flow of the code and introduces an execution statement (return) on the same line as the "if" which is bad coding practice, and then does it again, and then drops though to do some actual processing. If I was to refactor the code it would do this:

                                void SomeFunction(SomeThing s)
                                {
                                if (s != null && s.Thing != null)
                                {
                                // Do Some Process with s.Thing
                                .
                                .
                                .
                                }
                                }

                                or possibly:

                                void SomeFunction(SomeThing s)
                                {
                                if (s?.Thing != null)
                                {
                                // Do Some Process with s.Thing
                                .
                                .
                                .
                                }
                                }

                                Which is a lot cleaner! ...and this isn't even considering a method that returns a value of some sort. Opinions?

                                - I would love to change the world, but they won’t give me the source code.

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

                                It took me a long time to accept multiple returns. Meanwhile I love the concept "If a decision is clear, draw the consequences". And even though, if you are honest, it's a disguised goto; similar to a lot of MS code examples where a loop/break will be "missused".

                                It does not solve my Problem, but it answers my question

                                1 Reply Last reply
                                0
                                • Z ZurdoDev

                                  CodeWraith wrote:

                                  something goes wrong and you want to get out of there

                                  That's when you throw an exception.

                                  CodeWraith wrote:

                                  Awkward nested if/else blocks?

                                  Maybe breaking things into functions would be better.

                                  Social Media - A platform that makes it easier for the crazies to find each other. Everyone is born right handed. Only the strongest overcome it. Fight for left-handed rights and hand equality.

                                  C Offline
                                  C Offline
                                  CodeWraith
                                  wrote on last edited by
                                  #29

                                  ZurdoDev wrote:

                                  That's when you throw an exception.

                                  In what way is that better than an early return if your goal is to have a single return point? And catching it yourself at the end of your function does not justify the overhead of throwing an exception. The dreaded GOTO would then be cheaper and no more or less problematic.

                                  ZurdoDev wrote:

                                  Maybe breaking things into functions would be better.

                                  Unless you can't afford to bog down the processor with too much overhead of packing parameters onto the stack or cleaning it up afterwards. On a strong processor that's no big deal anymore, but often enough I sit there with a C compiler and a small microcontroller clocked < 10 MHz. Usually some output pins need to be pulled up or down according to a certain timing, leaving me only a few machine instructions on the microcontroller within that timeframe. In that case I may have to resort to inline assembly and can't afford any function calls.

                                  I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

                                  Z 1 Reply Last reply
                                  0
                                  • C CodeWraith

                                    ZurdoDev wrote:

                                    That's when you throw an exception.

                                    In what way is that better than an early return if your goal is to have a single return point? And catching it yourself at the end of your function does not justify the overhead of throwing an exception. The dreaded GOTO would then be cheaper and no more or less problematic.

                                    ZurdoDev wrote:

                                    Maybe breaking things into functions would be better.

                                    Unless you can't afford to bog down the processor with too much overhead of packing parameters onto the stack or cleaning it up afterwards. On a strong processor that's no big deal anymore, but often enough I sit there with a C compiler and a small microcontroller clocked < 10 MHz. Usually some output pins need to be pulled up or down according to a certain timing, leaving me only a few machine instructions on the microcontroller within that timeframe. In that case I may have to resort to inline assembly and can't afford any function calls.

                                    I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

                                    Z Offline
                                    Z Offline
                                    ZurdoDev
                                    wrote on last edited by
                                    #30

                                    CodeWraith wrote:

                                    inline assembly and can't afford any function calls.

                                    Different rules apply to assembly vs. OOP.

                                    Social Media - A platform that makes it easier for the crazies to find each other. Everyone is born right handed. Only the strongest overcome it. Fight for left-handed rights and hand equality.

                                    C 1 Reply Last reply
                                    0
                                    • F Forogar

                                      I have just had a heated argument cage fight lively discussion with some of my team members about ReSharper's suggestion of refactoring code to replace nested ifs with a series of multiple early return statements. This caused horribly messy code that ReSharper actually described in it's help as "more readable"! Using a version of their example code (which is a lot simpler than the actual code in question):

                                      void SomeFunction(SomeThing s)
                                      {
                                      if (s != null)
                                      {
                                      if (s.Thing != null)
                                      {
                                      // Do Some Process with s.Thing
                                      .
                                      .
                                      .
                                      }
                                      }
                                      }

                                      becomes:

                                      void SomeFunction(SomeThing s)
                                      {
                                      if (s == null) return
                                      if (s.Thing == null) return;
                                      // Do Some Process with s.Thing
                                      .
                                      .
                                      .
                                      }

                                      This makes a complete hash of the natural flow of the code and introduces an execution statement (return) on the same line as the "if" which is bad coding practice, and then does it again, and then drops though to do some actual processing. If I was to refactor the code it would do this:

                                      void SomeFunction(SomeThing s)
                                      {
                                      if (s != null && s.Thing != null)
                                      {
                                      // Do Some Process with s.Thing
                                      .
                                      .
                                      .
                                      }
                                      }

                                      or possibly:

                                      void SomeFunction(SomeThing s)
                                      {
                                      if (s?.Thing != null)
                                      {
                                      // Do Some Process with s.Thing
                                      .
                                      .
                                      .
                                      }
                                      }

                                      Which is a lot cleaner! ...and this isn't even considering a method that returns a value of some sort. Opinions?

                                      - I would love to change the world, but they won’t give me the source code.

                                      R Offline
                                      R Offline
                                      Rajesh R Subramanian
                                      wrote on last edited by
                                      #31

                                      Forogar wrote:

                                      if (s != null && s.Thing != null)

                                      This. Or better yet

                                      void SomeFunction(SomeThing s)
                                      {
                                      if (null == s || null == s.Thing)
                                      {
                                      throw blah;
                                      }
                                      // use s here with peace of mind
                                      }

                                      1 Reply Last reply
                                      0
                                      • Z ZurdoDev

                                        CodeWraith wrote:

                                        inline assembly and can't afford any function calls.

                                        Different rules apply to assembly vs. OOP.

                                        Social Media - A platform that makes it easier for the crazies to find each other. Everyone is born right handed. Only the strongest overcome it. Fight for left-handed rights and hand equality.

                                        C Offline
                                        C Offline
                                        CodeWraith
                                        wrote on last edited by
                                        #32

                                        ZurdoDev wrote:

                                        Different rules apply to assembly vs. OOP

                                        Actually it's C code with some inline assembly, if needed. Good C code quickly borders on object orientation, just think of structs containing function pointers plus some preprocessor magic to call the 'constructors' and 'destructors'. That's essentially the way C evolved to C++. You are right, but the rules don't change by what paradigm you choose. It's more like the processor dictating which paradigm you can afford. I still have my first computer, which I built almost 41 years ago. It has a hex keyboard and I still write machine code programs for it. You would not believe how much neatly calling functions bogs down the old processor or how quickly the code to pass parameters to the functions via the stack can eat up the tiny 4k RAM. Old programs are usually a single chunk of spaghetti code, only maintainable because they can't be very large, but they shurely make more out of these limited resources.

                                        I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

                                        1 Reply Last reply
                                        0
                                        • F Forogar

                                          I have just had a heated argument cage fight lively discussion with some of my team members about ReSharper's suggestion of refactoring code to replace nested ifs with a series of multiple early return statements. This caused horribly messy code that ReSharper actually described in it's help as "more readable"! Using a version of their example code (which is a lot simpler than the actual code in question):

                                          void SomeFunction(SomeThing s)
                                          {
                                          if (s != null)
                                          {
                                          if (s.Thing != null)
                                          {
                                          // Do Some Process with s.Thing
                                          .
                                          .
                                          .
                                          }
                                          }
                                          }

                                          becomes:

                                          void SomeFunction(SomeThing s)
                                          {
                                          if (s == null) return
                                          if (s.Thing == null) return;
                                          // Do Some Process with s.Thing
                                          .
                                          .
                                          .
                                          }

                                          This makes a complete hash of the natural flow of the code and introduces an execution statement (return) on the same line as the "if" which is bad coding practice, and then does it again, and then drops though to do some actual processing. If I was to refactor the code it would do this:

                                          void SomeFunction(SomeThing s)
                                          {
                                          if (s != null && s.Thing != null)
                                          {
                                          // Do Some Process with s.Thing
                                          .
                                          .
                                          .
                                          }
                                          }

                                          or possibly:

                                          void SomeFunction(SomeThing s)
                                          {
                                          if (s?.Thing != null)
                                          {
                                          // Do Some Process with s.Thing
                                          .
                                          .
                                          .
                                          }
                                          }

                                          Which is a lot cleaner! ...and this isn't even considering a method that returns a value of some sort. Opinions?

                                          - I would love to change the world, but they won’t give me the source code.

                                          S Offline
                                          S Offline
                                          Slacker007
                                          wrote on last edited by
                                          #33

                                          fail fast, fail early. end of story.

                                          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