There is a difference between super() and this() . Constructor must always be the first statement. SO we can not have two statements as first statement, hence either we can call super() or we can call this() from the constructor, but not both.
We cannot use both super and this in the same method. They have to be stated in the first line of the method. So either of them can be used at a time.