Homeinterview questions Is it possible to use this() and super() both in same constructor? September 18, 2023 0 No, Java does not allow using both super() and this() in same constructor. As per Java specification, super() or this() must be the first statement in a constructor. You Might Like View all
Post a Comment