ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
Crisp and Clear sir 🙂
Hello, awesome. Sir
Use white theme
// 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())); }
Crisp and Clear sir 🙂
Hello, awesome. Sir
Use white theme
// 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()));
}