Java Lambda

From Chorke Wiki
Revision as of 22:40, 5 September 2021 by Shahed (talk | contribs)
Jump to navigation Jump to search
Map<String, String> insured = Stream.of("Adults:1", "Children:1", "Senior Citizen:10")
                                    .map(pair -> pair.split(":"))
                                    .collect(Collectors.toMap(pair -> pair[0], pair->pair[1]));

Double totalInsured = insured.values().stream().mapToDouble(d -> Double.parseDouble(d)).sum();
//Integer totalInsured = insured.values().stream().mapToInt(d -> Integer.parseInt(d)).sum();


References