আমি আমার জাভা কোডটিতে চেক না করা সতর্কতাগুলি দেখানোর জন্য নেটবিয়ানদের সেট করেছি, তবে আমি নিম্নলিখিত লাইনে ত্রুটিটি বুঝতে ব্যর্থ হচ্ছি:
private List<String> cocNumbers;
private List<String> vatNumbers;
private List<String> ibans;
private List<String> banks;
...
List<List<String>> combinations = Utils.createCombinations(cocNumbers, vatNumbers, ibans);
দেয়:
[unchecked] unchecked generic array creation for varargs parameter of type List<String>[]
পদ্ধতির উত্স:
/**
* Returns a list of all possible combinations of the entered array of lists.
*
* Example: [["A", "B"], ["0", "1", "2"]]
* Returns: [["A", "0"], ["A", "1"], ["A", "2"], ["B", "0"], ["B", "1"], ["B", "2"]]
*
* @param <T> The type parameter
* @param elements An array of lists
* @return All possible combinations of the entered lists
*/
public static <T> List<List<T>> createCombinations(List<T>... elements) {
List<List<T>> returnLists = new ArrayList<>();
int[] indices = new int[elements.length];
for (int i = 0; i < indices.length; i++) {
indices[i] = 0;
}
returnLists.add(generateCombination(indices, elements));
while (returnLists.size() < countCombinations(elements)) {
gotoNextIndex(indices, elements);
returnLists.add(generateCombination(indices, elements));
}
return returnLists;
}
ঠিক কী ঘটছে এবং আমি কীভাবে এটি সংশোধন করব, যেমন আমি মনে করি কোডটিতে চেক করা সতর্কতাগুলি ছেড়ে দেওয়া ভাল ধারণা নয়?
উল্লেখ করতে ভুলে গেছি, তবে আমি জাভা 7 ব্যবহার করছি।
সম্পাদনা : এছাড়াও আমি এখন দেখছি যে পদ্ধতিটিতে নিম্নলিখিত রয়েছে:
[unchecked] Possible heap pollution from parameterized vararg type List<T>
where T is a type-variable:
T extends Object declared in method <T>createCombinations(List<T>...)