show/hide this revision's text 3 Fixed grammar (the apostrophe)

During a code review, a senior dev commented on some nesting I had going on in my code. He suggested I set a bool value so that I never have more than one level of nesting. I think my code is more readable but want to get other dev's devs' opinion on this. Which is better style? Is his knee-jerk aversion to nesting founded?

Below are some simplified code examples.

Nested:

If(condition1)
{
    If(condition2)
    {
    	if(condition3)
    	{
    		return true;
    	}
    	else
    	{
    		log("condition3 failed");
    	}
    else
    {
    	log("condition2 failed")
    }
}
else
{
    log("condition1 failed")
}

return false;

or

Bool Driven:

bool bRC = false;

bRC = (condition1);
if(brc)
{
    bRC = (condition2);
}
else
{
    log("condition1 failed");
    return false;
}

if(bRC)
{
    bRC = (condition3);
}
else
{
    log("condition2 failed");
    return false;
}

if(bRC)
{
    return true;
}
else
{
    log("condition3 failed");
    return false;
}
show/hide this revision's text 2 added 1 characters in body

During a code review, a senior dev commented on some nesting I had going on in my code. He suggested I set a bool value so that I never have more than one level of nesting. I think my code is more readable but want to get other dev's opinion on this. Which is better style? Is his knee-jerk aversion to nesting founded?

Below is are some simplified code examples.

Nested:

If(condition1)
{
    If(condition2)
    {
    	if(condition3)
    	{
    		return true;
    	}
    	else
    	{
    		log("condition3 failed");
    	}
    else
    {
    	log("condition2 failed")
    }
}
else
{
    log("condition1 failed")
}

return false;

or

Bool Driven:

bool bRC = false;

bRC = (condition1);
if(brc)
{
    bRC = (condition2);
}
else
{
    log("condition1 failed");
    return false;
}

if(bRC)
{
    bRC = (condition3);
}
else
{
    log("condition2 failed");
    return false;
}

if(bRC)
{
    return true;
}
else
{
    log("condition3 failed");
    return false;
}
show/hide this revision's text 1 [made Community Wiki]

Which is better coding style?

During a code review, a senior dev commented on some nesting I had going on in my code. He suggested I set a bool value so that I never have more than one level of nesting. I think my code is more readable but want to get other dev's opinion on this. Which is better style? Is his knee-jerk aversion to nesting founded?

Below is some simplified code examples.

Nested:

If(condition1)
{
    If(condition2)
    {
    	if(condition3)
    	{
    		return true;
    	}
    	else
    	{
    		log("condition3 failed");
    	}
    else
    {
    	log("condition2 failed")
    }
}
else
{
    log("condition1 failed")
}

return false;

or

Bool Driven:

bool bRC = false;

bRC = (condition1);
if(brc)
{
    bRC = (condition2);
}
else
{
    log("condition1 failed");
    return false;
}

if(bRC)
{
    bRC = (condition3);
}
else
{
    log("condition2 failed");
    return false;
}

if(bRC)
{
    return true;
}
else
{
    log("condition3 failed");
    return false;
}