如何比较卡布奇诺中的两个对象是否相等

发布于 2024-11-26 22:27:25 字数 45 浏览 1 评论 0原文

如何比较卡布奇诺中的两个物体是否相等。我已经尝试过==但它似乎对我不起作用。

How would you compare 2 objects in cappuccino for equality. I have tried == and it doesn't seem to work for me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无妨# 2024-12-03 22:27:25

如果该对象是常规 Cappuccino 对象并且它实现了所需的方法,则可以使用[objectA isEqual:objectB]

If the object is a regular Cappuccino object and it implements the required method, you can use [objectA isEqual:objectB].

深海夜未眠 2024-12-03 22:27:25

对象具有第一类身份。使用“==”或“===”两个对象永远不可能彼此相等。

您可以使用一个函数来确定“相等”,该函数基于迭代属性来查看两个对象是否具有相同的命名属性以及这些属性是否具有相同的值。

例如

var compareObj = (function () {
  function doCompare(a, b) {
    for (var p in a) {
      if (a.hasOwnProperty(p) && !b.hasOwnProperty(p)) {
        return false;
      }
      if (a[p] != b[p]) {
        return false;
      }
    }
    return true;
  }
  return function(a, b) {
    return doCompare(a, b) && doCompare(b, a);
  }
}());

Objects have first class identity. Two objects can never be equal to each other using "==" or "===".

You can have a function that determines "equality" based on iterating over the properties to see if both objects have the same named properties and those properties have the same value.

e.g.

var compareObj = (function () {
  function doCompare(a, b) {
    for (var p in a) {
      if (a.hasOwnProperty(p) && !b.hasOwnProperty(p)) {
        return false;
      }
      if (a[p] != b[p]) {
        return false;
      }
    }
    return true;
  }
  return function(a, b) {
    return doCompare(a, b) && doCompare(b, a);
  }
}());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文