结构比较类
我想知道 System.Collections 中使用的 StructuralComparisons 类是什么,以及它是如何使用的?我不知道应该如何使用它!最小的帮助将不胜感激。
谢谢
I want to know what for is StructuralComparisons Class present in System.Collections used and also how is it used?I have no idea how should I use it!! Smallest help would be appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
StructuralComparisons 用于比较两个值的结构。
它用于 F# 中,其中为每种类型自动实现 StructuralComparisons,
因为只需比较根即可比较两棵树。
StructuralComparisons is used to compare the structur of two values.
It is used in F# where StructuralComparisons is automaticly implented for every type,
because of that two trees can be compared by just comparing the roots.