If i Declare class constructor as local in parent class and create a child class by extending it ,is it work ??
if yes then how??
because by convectional method it gives error , is it another way to do it please share…
If i Declare class constructor as local in parent class and create a child class by extending it ,is it work ??
if yes then how??
because by convectional method it gives error , is it another way to do it please share…
In reply to dyno:
Constructing a class that extends from a class with a local constructor is not possible.
You need to explain what you are trying to accomplish.