0
0

More than 1 year has passed since last update.

class with final

Posted at

finalをつけたクラスはextendsできない

final public class SampleFinalClass {
    int i;
    void method(){};
}
public class SampleSubClass extends SampleFinalClass {
    int i;
}
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project mavenproject1: Compilation failure
com/mycompany/mavenproject1/SampleSubClass.java:[11,37] final com.mycompany.mavenproject1.SampleFinalClassからは継承できません
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0