Изо всех сил пытается объединить цепочку методов с расширениями классов - PullRequest
0 голосов
/ 02 мая 2019

Я пытаюсь объединить цепочку методов с расширениями класса и методом, определенным в базовом классе. Тем не менее, я изо всех сил пытаюсь заставить это работать, поскольку я еще не очень знаком с Обобщениями. Может ли кто-нибудь помочь мне заставить это работать? Это было бы очень ценно. Спасибо!

Текущая ситуация:

public abstract class A<T extends A<?>> extends F // the base class, all others extend this one (either direct or indirect)
public T isLoaded() { // method defined in class A
    // Omitted
    return (T) this;
}

public class B extends A<B> // One of the classes that extends the base class
public D tapButton() // Method defined in class B

public class C extends A<C> // Another class that extends the base class, also has a child itself
public C setAmount(int amount) // method defined in class C

public class D extends C // Class that extends the previous one (C)
public E tapButtonTwo() // Method defined in class D, can't move this one level up to due to other parts of the code

Код, который пытается использовать эти классы и методы:

// Failing scenario
protected void doSomething() {
    // I already have an instance of type B, but I omitted this part
    b.tapButton() // returns type D
        .isLoaded() // returns type C and is the cause of the problem
        .setAmount(10) // returns type C
        .tapButtonTwo() // fails on: cannot resolve method
}

// Scenario that does work:
protected void doSomething() {
    // I already have an instance of type B, but I omitted this part
    b.tapButton() // returns type D
        .setAmount(10) // now returns type D
        .tapButtonTwo() // works
}
...