如何从 VB.NET 的列表中查找对象的索引?

发布于 2024-12-09 11:23:23 字数 39 浏览 1 评论 0原文

假设我有一个列表,并且有一个对象。如何在列表中找到该对象的索引?

Say I have a list, and I have an object. How do I find the index of that object in the list?

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

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

发布评论

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

评论(1

池予 2024-12-16 11:23:23

您可以使用 FindIndex 查找通用列表中对象的索引:
这是获取对象索引的最灵活的方法。

 Dim list As New List(Of Object)
 Const myApple = "Apple111"
 For i = 0 To 1000
     List.Add("Apple" & i)
 Next
 Dim indexOfMyApple = list.FindIndex(Function(apple) myApple.Equals(apple)) 

但是,如果您只想通过 DefaultEqualityComparer

Dim indexOfMyApple = list.IndexOf(myApple)

如果您不知道它是什么类型,也可以使用 IndexOf,.NET 将使用 Equals 确定两个对象是否相等(应该是重写不仅可以比较引用)。

You can use FindIndex to find the index of an object in a generic List:
This is the most flexible method to get the index of an object.

 Dim list As New List(Of Object)
 Const myApple = "Apple111"
 For i = 0 To 1000
     List.Add("Apple" & i)
 Next
 Dim indexOfMyApple = list.FindIndex(Function(apple) myApple.Equals(apple)) 

But the IndexOf method is even simplier and more straightforward if you only want to find an object in a List by the DefaultEqualityComparer:

Dim indexOfMyApple = list.IndexOf(myApple)

You can use IndexOf also if you don't know what type it is, .NET will use Equals to determine if two objects are equal(should be overridden to not only compare references).

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