CLASS_CONSTRUCTOR would be called automatically whenever the class would be accessed – either by creation of an instance or accessing any component. But seems like it is changed with ABAP 740.
With ABAP release 740, you can use the NEW operator to instantiate the object. Read more to learn about NEW Operator.
Gaining access to the object, when working with ABAP Objects Events, which raised the event would be an added advantage for the event handler method.
Events are good way to communicate between objects. They are very useful when the object doesn’t care about the handler of the objects.
Few days back, I came across this challenging question on SCN about Inheritance within ABAP Objects specifically to the Protected Section.
ABAP Objects doesn’t support Multiple Inheritance – Inheriting from more than one Super class, but similar functionality can be achieved using the interfaces.