JAVAで2つのarrayListから重複しているstringをカウントしてアウトプットしたいですが、やり方が全く見当つかなくてどなたかアドバイスをいただけますでしょうか
//たとえば public class Main { public static void main(String[] args) { Iphone[] arrayList1 = { new Iphone("white", 4), new Iphone("red", 9), new Iphone("purple", 3), new Iphone("orange", 15), new Iphone("black", 4), }; Iphone[] arrayList2 = { new Iphone("pink", 3), new Iphone("red", 10), new Iphone("white", 8), new Iphone("blue", 1), new Iphone("bindle", 10), }; countOverlapIphone(arrayList1, arrayList2); }
arrayList1とarrayList2で同じ色のIphoneが何個重複しているのかをカウントしたいです
アウトプットの例としては
”2つのリストには2つのIphoneの色が重複しています”
という感じです。