Click here to Skip to main content
15,881,803 members
Articles / Programming Languages / C++
Tip/Trick

Preventing Nested Code Blocks

Rate me:
Please Sign up or sign in to vote.
1.00/5 (1 vote)
11 Mar 2010CPOL 15.8K   1   4
How to prevent nested code blocks
In this tip, you will find two basic rules to prevent nested code blocks.

Introduction

The easiest readable and maintainable code, is code that contains no nested blocks.

Although sometimes unavoidable, preventing nested code blocks should be part of any coding guideline.
Two basic rules are listed below:

  1. Exit First Rule
  2. Delegate

Rule 1 simply means that first any condition must be checked that may lead to an early exit of the method, e.g., consider (pseudo code):

C++
void MyMethod(...)
{
   if (x > 0)
   {
      // do your stuff here
   }
}

This can be refactored to:

C++
void MyMethod(...)
{
   if (x <= 0)
       return; // exit early, or throw exception

   // do your stuff here

}

Rule 2 Delegate means that any loop that contains another loop should be delegated to and executed by another method.

Example: Consider (pseudo code):

C++
// method will calculate the faculty of x (non-recursive)
int MyMethod(int x)
{
    if (x < 1) return 0;  // exit first rule
    if (x == 1) return 1;  // exit first rule

    int result = 0;
    while (x < max)
    {
        for (int i = 0; i < x; i++)
        {
           //do stuff here;
        }
        x++;
    }
}

The inner loop should be put in a separate method. This will not only increase readability but also increase code reuse, maintainability, and reduce code complexity, like so:

C#
// method will calculate the faculty of x (non-recursive)
int MyMethod(int x)
{
    if (x < 1) return 0;   // exit first rule
    if (x == 1) return 1;  // exit first rule

    int result = 0;
    while (x < max)
        result += MySubCalculation(x);

    x++;
}
C#
int MySubCalculation(int x)
{
   // put any exit firsts here

  for (int i = 0; i < x; i++) 
  {
      //do stuff here;
  }
}

History

  • 12th March, 2010: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Rubicon
Netherlands Netherlands
Currently Herre Kuijpers is employed at Rubicon. During his career he developed skills with all kinds of technologies, methodologies and programming languages such as c#, ASP.Net, .Net Core, VC++, Javascript, SQL, Agile, Scrum, DevOps, ALM. Currently he fulfills the role of software architect in various projects.

Herre Kuijpers is a very experienced software architect with deep knowledge of software design and development on the Microsoft .Net platform. He has a broad knowledge of Microsoft products and knows how these, in combination with custom software, can be optimally implemented in the often complex environment of the customer.

Comments and Discussions

 
GeneralCode output Pin
kornman0014-Mar-10 3:37
kornman0014-Mar-10 3:37 
GeneralRe: Code output Pin
Herre Kuijpers14-Mar-10 9:20
Herre Kuijpers14-Mar-10 9:20 
GeneralTechniques are sometimes useful, but not without drawbacks Pin
supercat912-Mar-10 4:42
supercat912-Mar-10 4:42 
GeneralRe: Techniques are sometimes useful, but not without drawbacks Pin
Herre Kuijpers12-Mar-10 5:35
Herre Kuijpers12-Mar-10 5:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.