在Java中,我們可以使用Collections.max()
和Collections.min()
方法結(jié)合Comparator.comparingInt()
方法來獲取集合中的最大值和最小值的絕對值。以下是一個示例:
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
public class Main {
public static void main(String[] args) {
List<Integer> numbers = new ArrayList<>();
numbers.add(-5);
numbers.add(3);
numbers.add(-8);
numbers.add(10);
// 獲取集合中的最大值的絕對值
int maxAbsoluteValue = Collections.max(numbers, Comparator.comparingInt(Math::abs));
System.out.println("最大值的絕對值: " + maxAbsoluteValue);
// 獲取集合中的最小值的絕對值
int minAbsoluteValue = Collections.min(numbers, Comparator.comparingInt(Math::abs));
System.out.println("最小值的絕對值: " + minAbsoluteValue);
}
}
在這個示例中,我們首先創(chuàng)建了一個包含正數(shù)、負(fù)數(shù)和零的整數(shù)列表。然后,我們使用Collections.max()
和Collections.min()
方法結(jié)合Comparator.comparingInt()
方法來獲取集合中的最大值和最小值的絕對值。最后,我們將結(jié)果打印到控制臺。