一次比较六个数组

发布于 2024-11-09 05:34:41 字数 43 浏览 0 评论 0原文

我有六个数组,我想同时比较所有这些数组。有人可以为此建议一个解决方案吗?

I have six arrays, and I want to compare all those arrays at the same time. Can someone please suggest a solution for this?

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

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

发布评论

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

评论(1

分开我的手 2024-11-16 05:34:41

isEqualToArray:比较接收
数组到另一个数组。

  • (BOOL)isEqualToArray:(NSArray *)otherArray 参数 otherArray 一个数组。返回值 YES 如果
    otherArray 的内容等于
    接收数组的内容,
    否则不行。

讨论两个数组相等
内容,如果它们各自拥有相同的内容
物体的数量和物体的数量
每个数组中的给定索引满足
isEqual:测试。

适用于 iOS 2.0 和
之后。在 NSArray.h 中声明

来自 NSArray 类参考

isEqualToArray: Compares the receiving
array to another array.

  • (BOOL)isEqualToArray:(NSArray *)otherArray Parameters otherArray An array. Return Value YES if the
    contents of otherArray are equal to
    the contents of the receiving array,
    otherwise NO.

Discussion Two arrays have equal
contents if they each hold the same
number of objects and objects at a
given index in each array satisfy the
isEqual: test.

Availability Available in iOS 2.0 and
later. Declared In NSArray.h

From NSArray Class Reference

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文