public static void main(String[] args) throws FileNotFoundException {
    double agentID;
    String type;
    double price;
    Set<String> types = new TreeSet<String>();
    Map<Double, Double> agents = new TreeMap<Double, Double>();
    Scanner console = new Scanner(System.in);
    String propertyID;
    double totalPrice = 0;

    System.out.print ("Please enter file name: ");
    String inputFileName = console.next();
    File inputFile = new File(inputFileName);
    Scanner in = new Scanner(inputFile);
    while (in.hasNextLine()) {
        propertyID = in.next();
        type = in.next();
        price = in.nextDouble();
        agentID = in.nextDouble();
        type = type.toUpperCase();
        types.add(type);
        if (agents.containsValue(agentID)) {
            agents.put(agentID, agents.get(agentID)+price);
        }
        else {
            totalPrice = price;
            agents.put(agentID, totalPrice);
        }
    }
    in.close();
    System.out.println(types);
    System.out.println(agents);
}


如果totalPrice映射中已包含agentID中的值,我正在尝试更新agents的映射值。当我运行程序时,它将输出分配给键agentID的初始值,但不会输出totalPrice + price。我已经查看了这里的问题并查看了API文档,但是没有取得任何进展。任何帮助,将不胜感激。

最佳答案

似乎您正在尝试将agentId与价格映射。所以我认为您需要使用的是

if (agents.containsKey(agentID)) { ... }


有关更多信息,请参见official containsKey javadoc

请尝试简化问题中的代码(删除文件阅读和其他不必要的信息),以便更轻松地确定问题所在。

10-07 18:12