What is Super class and when exactly I use it?

This is something basic of C++.

If you have a BaseClass where you defined a virtual function and gave it some logic, and you create a child class from it where you override this functions, you can make sure that the BaseClass code is still called by calling “Super::Function()”.

6 Likes