Avoid using protected field in final class
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。
ID: java-code-style/avoid-protected-in-final-class
Language: Java
Severity: Notice
Category: Code Style
Description
Avoid setting fields as protected inside a final class as they cannot be subclassed.
If flagged, review your class and its usage. Consider adjusting your modifiers and their access.
Non-Compliant Code Examples
public final class Foo {
private int x;
protected int y; // visibility should be reviewed
protected int getY() { // visibility should be reviewed
return y;
};
Foo() {}
}
Compliant Code Examples
public final class Foo {
private int x;
public int y;
public int getY() {
return y;
};
Foo() {}
}
Seamless integrations. Try Datadog Code Analysis