The first usage of super(2)
1. Note: this (argument), this () and super (argument) and super () cannot exist at the same time.
2 . If the first sentence in the constructor is this () or this (argument), at runtime, the JVM will give up looking for super () and super (argument) in the current constructor and turn to the constructor pointed by this () or this () to look for super (argument).Execution result:
--A structure--
--B structure--
--B structure with parameters--