package java1; //3.1_比较器
/**
* 商品类
* @author shkstart
* @create 2019 下午 4:52
*/
public class Goods implements Comparable{
private String name;
private double price;
9.4.2_比较器
最新推荐文章于 2023-08-14 20:35:34 发布
本文详细探讨了Java中比较器的概念,包括如何实现Comparator接口,使用Collections.sort()方法进行对象排序,以及在自定义对象排序中的应用。通过实例代码解释了比较器在实际开发中的重要作用。
摘要由CSDN通过智能技术生成