获取 arrayList 的项目索引(知道其名称)
是否有一个函数可以获取数组列表项并返回项索引?
例如:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为您正在寻找 索引。
你可以像这样使用它。
I think that you are looking for IndexOf.
You can use it like this.
没有单一方法可以为您提供此功能,但您可以首先按名称搜索项目,然后使用 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.
尝试将您的项目存储在
Dictionary
中?Tried storing your items in a
Dictionary<string, MyItemType>
?