Java中比较2个数组内容

虽然Java中有Arrary.equal方法,但是今天写golang的时候突然发现需要对2个数组进行比对,所以干脆先用java写个比对示例出来,然后转成go语言

import java.util.ArrayList;

public class Compire {
	public static void main(String[] args) {
		int[] a = { 1, 2, 3 };
		int[] b = { -1 };

		ArrayList<String> list = new ArrayList<String>();//用来存储2个数组不同的元素

		for (int i = 0; i < b.length; i++) {

			int temp = b[i];

			for (int j = 0; j < a.length; j++) {

				if (temp == a[j]) {
					break;
				} else if (temp != a[j]) {
					if (a.length == (j + 1)) {//判断指针位置
						list.add(temp + "");
					}
				}
			}

		}
<span style="white-space:pre">		</span>
		int listLength = list.size();
<span style="white-space:pre">		</span>if (listLength != 0) {
<span style="white-space:pre">			</span>for (int i = 0; i < listLength; i++) {
<span style="white-space:pre">				</span>System.out.println(list.get(i) + "不在a数组中");
<span style="white-space:pre">			</span>}
<span style="white-space:pre">		</span>} else {
<span style="white-space:pre">			</span>System.out.println("判断结果 不在数组中的集合长度" + list.size());
<span style="white-space:pre">		</span>}


<span style="white-space:pre">	</span>}
}


你可能感兴趣的:(java,数组比较)