Consider calling super in constructor このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。
このルールを試す ID: java-code-style/call-super-in-constructor
Language: Java
Severity: Notice
Category: Code Style
Description In Java, it is suggested to call super()
in an extended class. This rule will report a violation if both a call to super()
and an overloaded constructor are absent.
Non-Compliant Code Examples public class Foo extends Bar {
public Foo () {} // missing super()
}
Compliant Code Examples public class Foo extends Bar {
public Foo () {
super (); // calls the Bar constructor
}
public Foo ( int code ) {
this (); // also valid
}
}
Seamless integrations. Try Datadog Code Analysis