I have a class that has no default constructor or assignment operator so it is declared and initialized within an if/else statement depending on the result of another function. But then it says that it is out of scope later even though both routes of the conditional will create an instance.
Consider the following example (done with int just to illustrate the point):
#include <iostream>
int main()
{
if(1) {
int i = 5;
} else {
int i = 0;
}
std::cout << i << std::endl;
return 0;
}
Do variables declared in a conditional go out of scope at the end of the conditional? What is the correct way to handle the situation where there is no default constructor but the arguments for the constructor depend on certain conditionals?
Edit
In light of the answers given, the situation is more complex so maybe the approach would have to change. There is an abstract base class A and two classes B and C that derive from A. How would something like this:
if(condition) {
B obj(args);
} else {
C obj(args);
}
change the approach? Since A is abstract, I couldn’t just declare A* obj and create the appropriate type with new.
“Do variables declared in a conditional go out of scope at the end of the conditional?”
Yes – the scope of a local variable only falls within enclosing brackets:
In your case, say you have
class A.If you’re not dealing with pointers:
or if you’re using a different constructor prototype:
If you’re creating the instance on the heap:
or you could use the ternary operator:
EDIT:
Yes you could:
EDIT:
It seems what you’re looking for is the factory pattern (look it up):