ドキュメントによると
A class type should be declared abstract only if the intent is that subclasses
can be created to complete the implementation. If the intent is simply to prevent
instantiation of a class, the proper way to express this is to declare a
constructor of no arguments, make it private, never invoke it, and declare no
other constructors.
抽象クラスには抽象メソッドを含めることはできませんが、有効なユース ケース (サブクラスからスーパーを呼び出すなど) が必要です。インスタンス化(抽象クラスのオブジェクトの作成)はできません。
したがって、abstract キーワードを削除するか、抽象クラスを拡張する別のクラスを作成してください。
抽象クラスがインターフェースを実装するときの記録のためだけに、抽象クラスにインターフェースメソッドを実装する必要はありません(ただし、設計で指示されている場合は可能です)。ただし、それを実装する抽象クラスにインターフェイス メソッドを実装しない場合は、抽象クラスの最初の具象サブクラスに同じものを実装する必要があります。また、抽象クラスにインターフェイス メソッドを実装する場合は、抽象クラスの具体的なサブクラスに再度実装する必要はありません。ただし、いつでもオーバーライドできます。