Я написал эту программу для копирования одного списка в другой, но получаю сообщение об ошибке. И при компиляции других программ я тоже получил ошибку с Collections.sort()
и Collections.copy()
. Кто-нибудь может мне помочь с этим?
import java.util.*;
import java.util.ArrayList;
import java.util.Collection;
class CopyList {
public static void main(String[] args) {
Collection<String> srcstr = new ArrayList<String>();
srcstr.add("New York");
srcstr.add("Atlanta");
srcstr.add("Dallas");
srcstr.add("Madison");
System.out.println("Number of elements: " + srcstr.size());
srcstr.forEach(s->System.out.println(s));
Collection<String> deststr = new ArrayList<String>();
deststr.add("Delhi");
deststr.add("Mumbai");
Collections.copy(srcstr,deststr);
deststr.forEach(s->System.out.println(s));
}
}
Ошибка, которую я получаю:
CopyList.java:17: error: method copy in class Collections cannot be applied to given types;
Collections.copy(srcstr,deststr);
^
required: List<? super T>,List<? extends T>
found: Collection<String>,Collection<String>
reason: cannot infer type-variable(s) T
(argument mismatch; Collection<String> cannot be converted to List<? super T>)
where T is a type-variable:
T extends Object declared in method <T>copy(List<? super T>,List<? extends T>)