比较两个数组,并取出相同的元素

比较两个数组,取出相同的元素

普通方法

public class test01 {
    public static void main(String[] args) {
        String[] str1 = {"a", "e", "h", "t", "f", "c", "g", "b", "d"};
        String[] str2 = {"a", "d", "e", "f"};
        List<String> result = new ArrayList<String>();
        for (int i = 0; i < str1.length; i++) {
            for (int j = 0; j < str2.length; j++) {
                if (str1[i] == str2[j]) {
                    System.out.println(str1[i]);
                    result.add(str1[i]);

                }
            }
        }
    }
}

代码重构之后

public class test01 {
    public static void main(String[] args) {
        String[] str1 = {"a", "e", "h", "t", "f", "c", "g", "b", "d"};
        String[] str2 = {"a", "d", "e", "f"};
        List<String> result = new ArrayList<String>();
        for (String a : str1) {
            for (String b : str2) {
                if (a == b) {     //判断是否相等
                    System.out.println(a);
                }
            }
        }
    }
}

版权声明:本文为lhc_makefunny原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。