This is hypothetical, but I have a class with two, overloaded constructors - none of which are the default constructors. If I were to call one constructor from the other, would it be recursive? Example:
class Example
{
Example(const int integer)
{
//Constructor Code Here
}
Example(argument)
{
Example object(68);
//Rest of constructor code
}
};