I have seen similar kind of threads, But, not sure how to exactly apply the solutions to my case. My problem is that i have a set of usecases lets say 'A','B','C',There are certain commands i need to execute when the input passed(2 usecases are the input) is any 2 of the listed usecases. for example:
switch(input1)
{
case A:
break;
case B:
break;
case C:
break;
}
inside the each case, i will have to check on input 2, so, the final code could look like
switch(input1)
{
case A:
{
switch(input2):
case B:
break;
case c:
break;
}
case B:
{
switch(input2):
case A:
break;
case c:
break;
}
....
}
I was thinking to use a map of (pair,command) and remove this switch cases, but is there any alternative better solution or design problem to solve this problem?
input1) during execution? – leemes Feb 12 at 8:15input2? And more specific: Can they overlap? (For a particular value of input2, are there equal implementations among different values of input1?) – leemes Feb 12 at 8:28