JavaScript 는 두 배열 의 내용 이 같은 지 비교 합 니 다(추천)

4935 단어 js두 배열같다
오늘 의외로 자바 스 크 립 트 는=또는===연산 자 를 사용 하여 두 배열 의 일치 여 부 를 직접 비교 할 수 없다 는 것 을 발견 하 였 다.

alert([]==[]);  // false
alert([]===[]);  // false
위의 두 마디 코드 모두 false 가 팝 업 됩 니 다.
JavaScript 에서 Array 는 대상 이기 때문에=또는==조작 자 는 두 대상 이 같은 인 스 턴 스 인지,즉 같은 대상 이 인용 하 는 지 비교 할 수 있 습 니 다.현재 자 바스 크 립 트 는 내 장 된 연산 자가 없 으 며 대상 의 내용 이 같은 지 판단 합 니 다.
그러나 관성 사 고 는 수조 도 값 이 라 고 생각 하고 비교 할 수 있다.
배열 이 같은 지 비교 하려 면 배열 요 소 를 옮 겨 다 니 며 비교 할 수 밖 에 없다.
인터넷 에 널리 알려 진 방법 중 하 나 는 배열 을 문자열 로 바 꾸 는 것 이다.

JSON.stringify(a1) == JSON.stringify(a2)
 혹시

a1.toString() == a2.toString()
이런 방법 을 쓰 지 마 세 요.
이런 방법 은 어떤 경우 에는 가능 하 다.두 배열 의 요소 순서 가 같 고 요소 가 모두 문자열 로 바 뀔 수 있 는 상황 에서 확실히 가능 하 다.그러나 이러한 코드 는 위험 이 존재 한다.예 를 들 어 숫자 가 문자열 로 바 뀌 고 숫자'1'과 문자열'1'은 같다 고 여 겨 져 디 버 깅 에 어려움 을 초래 할 수 있 으 므 로 추천 하지 않 는 다.
StackOverflow 에서 큰 신 이 정확 한 방법 을 제 공 했 으 니 짐꾼 을 하 겠 습 니 다.

// Warn if overriding existing method
if(Array.prototype.equals)
  console.warn("Overriding existing Array.prototype.equals. Possible causes: New API defines the method, there's a framework conflict or you've got double inclusions in your code.");
// attach the .equals method to Array's prototype to call it on any array
Array.prototype.equals = function (array) {
  // if the other array is a falsy value, return
  if (!array)
    return false;
  // compare lengths - can save a lot of time 
  if (this.length != array.length)
    return false;
  for (var i = 0, l = this.length; i < l; i++) {
    // Check if we have nested arrays
    if (this[i] instanceof Array && array[i] instanceof Array) {
      // recurse into the nested arrays
      if (!this[i].equals(array[i]))
        return false;    
    }      
    else if (this[i] != array[i]) { 
      // Warning - two different object instances will never be equal: {x:20} != {x:20}
      return false;  
    }      
  }    
  return true;
}
// Hide method from for-in loops
Object.defineProperty(Array.prototype, "equals", {enumerable: false});
대신 은 오 브 젝 트 를 비교 하 는 방법 도 주 었 다.

Object.prototype.equals = function(object2) {
  //For the first loop, we only check for types
  for (propName in this) {
    //Check for inherited methods and properties - like .equals itself
    //https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/hasOwnProperty
    //Return false if the return value is different
    if (this.hasOwnProperty(propName) != object2.hasOwnProperty(propName)) {
      return false;
    }
    //Check instance type
    else if (typeof this[propName] != typeof object2[propName]) {
      //Different types => not equal
      return false;
    }
  }
  //Now a deeper check using other objects property names
  for(propName in object2) {
    //We must check instances anyway, there may be a property that only exists in object2
      //I wonder, if remembering the checked values from the first loop would be faster or not 
    if (this.hasOwnProperty(propName) != object2.hasOwnProperty(propName)) {
      return false;
    }
    else if (typeof this[propName] != typeof object2[propName]) {
      return false;
    }
    //If the property is inherited, do not check any more (it must be equa if both objects inherit it)
    if(!this.hasOwnProperty(propName))
     continue;
    //Now the detail check and recursion
    //This returns the script back to the array comparing
    /**REQUIRES Array.equals**/
    if (this[propName] instanceof Array && object2[propName] instanceof Array) {
          // recurse into the nested arrays
      if (!this[propName].equals(object2[propName]))
            return false;
    }
    else if (this[propName] instanceof Object && object2[propName] instanceof Object) {
          // recurse into another objects
          //console.log("Recursing to compare ", this[propName],"with",object2[propName], " both named \""+propName+"\"");
      if (!this[propName].equals(object2[propName]))
            return false;
    }
    //Normal value comparison for strings and numbers
    else if(this[propName] != object2[propName]) {
      return false;
    }
  }
  //If everything passed, let's say YES
  return true;
} 
위 에서 말 한 것 은 편집장 이 소개 한 자 바스 크 립 트 가 두 배열 의 내용 이 같은 지 비교(추천)하 는 것 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 면 저 에 게 메 시 지 를 남 겨 주세요.편집장 은 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기