A = if infos !empty and inputs empty - do remove;

B = if infos empty and inputs !empty - do add;

C = if infos !empty and inputs !equal to infos - do add;

We can have like:

if B //it's the most common operation, so at the beginning.
{
  //add 
}
else
{
 //remove
}
elseif(c) 
{
 //the same add
} 

I believe this can be better thinking. Can I have your help?

Thanks in advance,

link|improve this question

what is infos ? – Jigar Joshi Sep 3 '10 at 11:03
Just something. It could be blabla. In this case, I'm trying to compare values from a database to those "inputed" by the user. So info will represent those coming from the database. – MEM Sep 3 '10 at 11:19
feedback

6 Answers

up vote 1 down vote accepted
if (infos != inputs) {
    if (empty(inputs)) {
        // remove
    } else {
        // add
    }
}

Remember, the outermost condition checks that both values are never empty (never the same, actually). E.g.,

A = if infos !empty and inputs empty - do remove;

If inputs is empty infos can not be empty. Therefore, remove.

B = if infos empty and inputs !empty - do add;
C = if infos !empty and inputs !equal to infos - do add;

Different and inputs not empty => it doesn't mather whether info is empty => add.

link|improve this answer
I will study it... – MEM Sep 3 '10 at 12:01
I believe this covers all the possibilities. If they are equal, do nothing. If they are different, and input is empty - do remove. If they are different, and input isn't empty - do add. – MEM Sep 3 '10 at 14:24
feedback
if (B || C) 
{
  //add 
}
else
{
 //remove
}
link|improve this answer
The only think here, is that, the C condition plus the B condition could because quite big. :s So, I better store those comparisons into a variable, and use those variables instead. What do you think? – MEM Sep 3 '10 at 11:21
This would also remove when both are empty. – Gumbo Sep 3 '10 at 11:27
@Gumbo: Please clarify - both what - infos or inputs ? – MEM Sep 3 '10 at 11:31
ow... infos and inputs ? if both infos and inputs are empty this will not properly work? – MEM Sep 3 '10 at 11:40
@MEM if you want to use the B and C conditions later on, store them in a variable, if you only want to use them once, put them directly in the condition. be sure to use (B) || (C), so nested conditions, if any, doesn't get evaluated in a way you don't want. – aularon Sep 3 '10 at 11:42
show 4 more comments
feedback

it's if, elseif (as much elseif's as you want) and finally else:

if B //it's the most common operation, so at the beginning.
{
  //add 
} elseif(something else) 
{
 //the same add
} elseif(c) 
{
 //the same add
} else
{
 //remove
}
link|improve this answer
The thing is, that we are repeating the add code, it's exactly the same, so probably having only one "add" will be better? – MEM Sep 3 '10 at 11:12
So put the add code in a different method... – Roger Lipscombe Sep 3 '10 at 11:15
I see... we are repeating the code, so either we do like Dezigo suggest, or we grab that repetition and convert that into a method? Or I'm not properly understand it ? – MEM Sep 3 '10 at 11:18
You are right, I didn't notice he wants to add in both cases. – aularon Sep 3 '10 at 11:19
I really like your if elseif else representation. :) I will mark as useful. :) – MEM Sep 3 '10 at 11:25
feedback
if( !A ) {
  add;
} else {
  remove;
}

Short and clear in my opinion.

link|improve this answer
But wrong when both are empty. – Gumbo Sep 3 '10 at 11:30
@Gumbo you are correct. Dident see this case in the specs so i missed it. – InsertNickHere Sep 3 '10 at 12:13
feedback

You sure can do that. Just order the conditional blocks: If... Else If... Else.

link|improve this answer
@aularon & Daniel - Ohh! Nice. So we do have if, else if... else if... and the else at the end will be the contrary of the FIRST if condition. precise? – MEM Sep 3 '10 at 11:23
1  
@mem - No, it will only be executed if none of the other blocks are executed. – Daniel A. White Sep 3 '10 at 12:08
Thanks - So else, doesn't mean the opposite, or the contrary. Just, something different. ? – MEM Sep 3 '10 at 13:14
feedback

You can combine the conditions of B and C with the OR operator:

if (empty($infos) && !empty($inputs) || !empty($infos) && $inputs != $infos) {
    // add
} else if (!empty($infos) && empty($inputs)) {
    // remove
}
link|improve this answer
Can you please comment on your comments, when you refer to both, what are you referring to? :D – MEM Sep 3 '10 at 11:39
got it. :) info and inputs – MEM Sep 3 '10 at 11:54
1  
What’s the reason for the down vote? – Gumbo Sep 3 '10 at 13:33
I'm with Gumbo. :) I believe this info is helpfull. – MEM Sep 3 '10 at 13:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.