I was looking to see if I could find anything that would help me with my problem, but so far no luck. I have the following class:
public interface ISort<T> {
public List<T> sort(List<T> initialList);
}
public abstract class Sort<T> implements ISort<T> {
private Comparator<? super T> comparator;
public Sort(Comparator<? super T> comparator) {
this.comparator = comparator;
}
@Override
public List<T> sort(List<T> initialList) {
ArrayList<T> list = new ArrayList<T>(initialList);
Collections.sort(list, comparator);
return list;
}
}
public abstract class InternalTreeItem<T> {
public abstract String getValue();
}
public class D extends InternalTreeItem<Integer> {
private Integer i;
public D(Integer i) {
this.i = i;
}
@Override
public String getValue() {
return i.toString();
}
public Integer getInteger() {
return i;
}
}
public class DComparator implements Comparator<D> {
@Override
public int compare(D o1, D o2) {
return o1.getInteger() - o2.getInteger();
}
}
public class DSort extends Sort<D> {
public DSort(Comparator<D> comparator) {
super(comparator);
}
public DSort() {
super(new DComparator());
}
}
And the test class:
public class TestClass {
@Test
public void test1() {
List<InternalTreeItem<?>> list= new ArrayList<InternalTreeItem<?>>();
list.add(new D(1));
list.add(new D(10));
list.add(new D(5));
ISort<?> sorter = new DSort();
sorter.sort(list);
}
}
The compiler gives an error in the line
sorter.sort(list);
and conditions
The method sort(List<capture
in the type ISort<capture
is not applicable for the arguments
(List<InternalTreeItem<?>>)
Well, after a couple of hours and help from a friend, we realized that the problem is with # collections sort(List<T> list, Comparator<? super T> c)in the abstract Sort class, as I use Comparator<? extends T>.
I use generics, since I have 2 models, one model supercomputer is a general abstract class, subclassed by 35 classes, and the second model actually has 2 different superclasses that are combined, subclassed again by 35 classes. These hierarchies are given; I cannot do anything to change them.
, . , factory, T .
- ( , ).
,