0
Is use of constructor in any program good or bad, if bad. What is another solution for construction based problems?
1 Respuesta
0
You don't 'have' to include you own constructors. They are normally used to initialise an objects' variables.
In c++ if you don't 'supply' a constructor, the compiler will add a default constructor for you.
Not sure what happens in python though.