This is the text from the book Data Structures and Algorithms in Java by Goodrich from chapter one giving reasons for use of the this
keyword.
To allow one constructor body to invoke another constructor body. When one method of a class invokes another method of that same class on the current instance, that is typically done by using the (unqualified) name of the other method. But the syntax for calling a constructor is special. Java allows use of the keyword this to be used as a method within the body of one constructor, so as to invoke another constructor with a different signature.
Why does it say unqualified name of the other method?