Sort Employee Objects by Salary in Java using Lambda Expression | Java 8 Lambda Comparator Example

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ม.ค. 2025

ความคิดเห็น • 4

  • @suganyas704
    @suganyas704 หลายเดือนก่อน

    Crisp and Clear sir 🙂

  • @ReddyReddy-o7n
    @ReddyReddy-o7n หลายเดือนก่อน

    Hello, awesome. Sir

  • @Abhishek-df5tf
    @Abhishek-df5tf หลายเดือนก่อน +1

    Use white theme

  • @vishalgaikwad873
    @vishalgaikwad873 หลายเดือนก่อน

    // Using Stream API to sort by salary
    list.stream()
    .sorted(Comparator.comparing(Employee::getSalary)) // Sorts by employee salary
    .forEach(e -> System.out.println(e.getEmpId() + "--::--" + e.getEmpName() + "--::--" + e.getSalary()));
    }