摘要: Unlike methods, a constructor cannot be abstract, static, final, native, strictfp, or synchronized.
1. A constructor is not inherited, so there is no need to declare it final
2. As the same reason above, an abstract constructor could never be implemented.
阅读全文