久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

如何在不打印重復項的同時從 HashMap 打印值?

How would I print values from a HashMap while not printing duplicates?(如何在不打印重復項的同時從 HashMap 打印值?)
本文介紹了如何在不打印重復項的同時從 HashMap 打印值?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

我正在嘗試修復這段代碼,我正在從具有車牌號和所有者列表(該格式)的哈希圖中打印.我試圖通過 printOwners(); 打印出所有者.但我不能讓它不打印重復.

I'm trying to fix this piece of code where I'm printing from a hashmap having a list of plate numbers and owners (that format). I'm trying to print out just the owners via printOwners(); but I can't get it to not print duplicates.

我已經玩了一段時間了,似乎無法跳過重復項.

I've played around with it for a while, just can't seem to skip over duplicates.

這是我的代碼:

import java.util.ArrayList;
import java.util.HashMap;

public class VehicleRegister {

    private HashMap<RegistrationPlate, String> owners;

    public VehicleRegister() {
        owners = new HashMap<RegistrationPlate, String>();
    }

    public boolean add(RegistrationPlate plate, String owner) {
        //search for existing plate
        if (!(owners.containsKey(plate))) { // add if no plate
            owners.put(plate, owner);
            return true;
        }

        //if plate is found, check for owner
        else if (owners.keySet().equals(owner)) {
           return false;
        }

        return false;
    }

    public String get(RegistrationPlate plate) {
        return owners.get(plate);
    }

    public boolean delete(RegistrationPlate plate) {
        if (owners.containsKey(plate)) {
            owners.remove(plate);
            return true;
        }

        return false; 
    }

    public void printRegistrationPlates() {
        for (RegistrationPlate item : owners.keySet()) {
            System.out.println(item);
        }
    }

    public void printOwners() {

        for (RegistrationPlate item : owners.keySet()) {
            System.out.println(owners.get(item));            
        }
    }
}

推薦答案

要刪除重復項,請使用 HashSet:

To remove the duplicates, use a HashSet<String>:

public void printOwners() {
    for (String s : new HashSet<>(owners.values())) {
        System.out.println(s);            
    }
}

或者使用 Java 8 Streamdistinct() 方法:

Alternatively with Java 8 Stream and the distinct() method:

public void printOwners() {
    owners.values().stream().distinct().forEach(System.out::println);
}

這篇關于如何在不打印重復項的同時從 HashMap 打印值?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

相關文檔推薦

Convert List of Strings into Map using Java-8 Streams API(使用 Java-8 Streams API 將字符串列表轉換為 Map)
Getting data from JSON(從 JSON 獲取數據)
java linkedhashmap iteration(javalinkedhashmap迭代)
Converting a list of objects to Map(將對象列表轉換為 Map)
Create a HashMap with a fixed Key corresponding to a HashSet. point of departure(用一個固定的Key對應一個HashSet創建一個HashMap.出發點)
HttpMessageConverter exception : RestClientException: Could not write request: no suitable HttpMessageConverter found(HttpMessageConverter 異常:RestClientException:無法寫入請求:找不到合適的 HttpMessageConverter) - IT屋-程序員
主站蜘蛛池模板: 国产免费一区 | 黄色录像一级片 | 精品福利在线观看 | 日韩一级免费 | 亚洲高清毛片一区二区 | 成人在线免费视频观看 | 日韩在线免费视频 | 欧美视频一区二区三区 | 欧美a一级| 国产精品二区一区二区aⅴ污介绍 | 精品在线看 | 中文字幕亚洲一区 | 99国产免费 | 中文字幕+乱码+中文乱码91 | 国产一区在线播放 | 欧美美女视频 | 日韩欧美精品一区 | 国产成人免费在线视频 | 成人黄色免费视频 | 亚洲成人av在线 | 成人一级黄色片 | 国产一级视频在线观看 | 久久人人爽人人爽人人片 | 天天操夜夜摸 | 一本在线 | 免费亚洲视频 | 国产精品羞羞答答 | 日本精品二区 | 五月天婷婷社区 | 丁香婷婷网 | 在线播放一区 | 久久精品黄色 | 午夜在线观看视频网站 | 国产精品福利视频 | 天天爽 | 欧美一级片在线观看 | 日韩在线免费视频 | 国产一级视频在线观看 | 黄色一级片免费 | 亚洲精品乱码久久久久久蜜桃91 | 日韩在线精品 |