获取 arrayList 的项目索引(知道其名称)

发布于 2024-11-29 22:37:43 字数 124 浏览 0 评论 0原文

是否有一个函数可以获取数组列表项并返回项索引?

例如:

int indexItem = ArrayList.getItemIndexByName(itemName);

is there a function that take array list item and bring back item index ?

for ex:

int indexItem = ArrayList.getItemIndexByName(itemName);

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

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

发布评论

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

评论(3

秋日私语 2024-12-06 22:37:43

我认为您正在寻找 索引

int indexItem = myArray.IndexOf(itemName);

你可以像这样使用它。

String itemName = "Hello";
ArrayList myArray = new ArrayList();
myArray.Add( "Hello" );
myArray.Add( "World" );

// Get index of "Hello"
int indexItem = myArray.IndexOf(itemName);

I think that you are looking for IndexOf.

int indexItem = myArray.IndexOf(itemName);

You can use it like this.

String itemName = "Hello";
ArrayList myArray = new ArrayList();
myArray.Add( "Hello" );
myArray.Add( "World" );

// Get index of "Hello"
int indexItem = myArray.IndexOf(itemName);
ら栖息 2024-12-06 22:37:43

没有单一方法可以为您提供此功能,但您可以首先按名称搜索项目,然后使用 ArrayList.IndexOf

There is no single method that will give you this, but you could first search for your item by name, then use ArrayList.IndexOf.

乖乖 2024-12-06 22:37:43

尝试将您的项目存储在 Dictionary 中?

Tried storing your items in a Dictionary<string, MyItemType> ?

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