查找列表中 int 的索引

发布于 2024-11-17 13:33:51 字数 84 浏览 0 评论 0原文

有没有办法从列表中获取 int 的索引? 寻找类似 list1.FindIndex(5) 的内容,我想在列表中找到 5 的位置。

Is there a way to get the index of an int from a list?
Looking for something like list1.FindIndex(5) where I want to find the position of 5 in the list.

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

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

发布评论

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

评论(5

初懵 2024-11-24 13:33:51

使用列表的 .IndexOf() 方法。该方法的规范可以在 MSDN 上找到。

Use the .IndexOf() method of the list. Specs for the method can be found on MSDN.

不如归去 2024-11-24 13:33:51

FindIndex 似乎就是您要查找的内容:

FindIndex (谓词)

用法:

list1.FindIndex(x => x==5);

示例:

// given list1 {3, 4, 6, 5, 7, 8}
list1.FindIndex(x => x==5);  // should return 3, as list1[3] == 5;

FindIndex seems to be what you're looking for:

FindIndex(Predicate<T>)

Usage:

list1.FindIndex(x => x==5);

Example:

// given list1 {3, 4, 6, 5, 7, 8}
list1.FindIndex(x => x==5);  // should return 3, as list1[3] == 5;
燕归巢 2024-11-24 13:33:51
List<string> accountList = new List<string> {"123872", "987653" , "7625019", "028401"};

int i = accountList.FindIndex(x => x.StartsWith("762"));
//This will give you index of 7625019 in list that is 2. value of i will become 2.
//delegate(string ac)
//{
//    return ac.StartsWith(a.AccountNumber);
//}
//);
List<string> accountList = new List<string> {"123872", "987653" , "7625019", "028401"};

int i = accountList.FindIndex(x => x.StartsWith("762"));
//This will give you index of 7625019 in list that is 2. value of i will become 2.
//delegate(string ac)
//{
//    return ac.StartsWith(a.AccountNumber);
//}
//);
无所谓啦 2024-11-24 13:33:51

尝试 IndexOf

Try IndexOf.

送舟行 2024-11-24 13:33:51

如果您认为 C# 中的通用列表像数组一样从 0 开始索引,那就更容易了。这意味着你可以使用类似的东西:

int 索引 = 0; int i = 账户[索引];

It's even easier if you consider that the Generic List in C# is indexed from 0 like an array. This means you can just use something like:

int index = 0; int i = accounts[index];

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