There are 2 classes: A , B Where B inherits A In class B constructors will coincide completely with constructors of class A Is it possible to somehow not copy each constructor and then call super(args...) follow them?

Just for the sake of saving time and space.

PS in c ++ for example, you can write using A::A;

    1 answer 1

    It is impossible. super () is the only way out.