C++ superclass constructor calling rules
- by levik
What are the C++ rules for calling the superclass constructor from a subclass one??
For example I know in Java, you must do it as the first line of the subclass constructor (and if you don't an implicit call to a no-arg super constructor is assumed - giving you a compile error if that's missing).