我发现了相关问题,但我不知道如何使用for循环来完成此操作。我有两个由用户输入填充的HashMaps。两个地图都有匹配的键。我正在尝试提出一个最终报告,它将拉出匹配键和每个单独地图的值,所有这些都打印在同一行上。截至目前,我的代码正在打印第一个HashmMap(产品),然后是值第二个MashMap(价格)。
当前输出
Priority Product Price
1 apple
2 banana
3 orange
$ 43.81
$ 69.64
$ 96.35
我考虑过创建第三个hashmap并将所有值合并为一个,但我不确定这是否真的有效。
期望输出
Priority Product Price
1 apple $ 43.81
2 banana $ 69.64
3 orange $ 96.35
我的代码
import java.util.*;
public class Testing
{
String products;
int priority;
double price;
Scanner keyboard = new Scanner(System.in); //Scanner
HashMap<Integer, String> pMap = new HashMap<Integer, String>(); // Product HashMap
HashMap<Integer, Double> priceMap = new HashMap<Integer, Double>(); //Price HashMap
Random r = new Random(); //Random number
public void testingItems()
{
for ( int count = 0; count < 3; count++)
{
//Ask for user input to Add product name and product priority
System.out.println("\nEnter a Product");
products = keyboard.nextLine();
System.out.println("\nEnter a Priority");
priority = keyboard.nextInt();
price = (r.nextDouble() * 100);
//System.out.print(price);
keyboard.nextLine();
//*** HASHMAPS ***
//Add product and priority to HashMap
pMap.put(priority, products);
priceMap.put(priority, price);
System.out.println("Product: "+ products + "\t\t" + "Priority: " + priority + "\n\n" + "Price:" + " $ "+ price);
}
System.out.println("\nPriority " + " Product " + " Price");
System.out.println("----------------------------------------");
for (Integer key: pMap.keySet())
{
System.out.println(key + "\t" + pMap.get(key));
}
for (Integer key2: priceMap.keySet()){
System.out.println("$ " + priceMap.get(key2));
}
}
}
答案 0 :(得分:2)
如果您不想要换行符,请使用print
而不是println
,因为您希望将文字放在同一行上,所以请记住以println()结尾。或\n
获取下一行的下一条记录。)
答案 1 :(得分:2)
为了您自己的理智,您可能想要引入一个具有优先级,名称和价格的Product
类。但要回答问题:
pMap.forEach((p, n) -> System.out.format("%d %s $%2f\n", p, n, priceMap.get(p)));
如果您创建了Product
类(推荐),其自然排序(implements Comparable<Product>
)由priority
定义,则可以将它们存储在{ {1}}。然后,对集合的迭代将按优先级顺序排列。
答案 2 :(得分:1)
您可以同时迭代这两个地图,并根据其优先级索引访问这些元素。
activityVC.completionWithItemsHandler = { (activityType: UIActivityType?, completed: Bool, returnedItems: [Any]?, error: Error?) -> Void in
if completed == true {
try! FileManager.default.removeItem(at: targetURL)
}
}