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

来源:互联网 发布:windows ftp命令详解 编辑:程序博客网 时间:2024/06/15 12:57

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

普通方法

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);                }            }        }    }}
原创粉丝点击