确定表单上项目的索引 (J2ME)

发布于 2024-07-06 05:37:12 字数 156 浏览 8 评论 0原文

给定一个已附加到 FormItem,找出该项目在 Form 上的索引的最佳方法是什么?

Form.append(Item) 将为我提供最初添加的索引,但如果我稍后在此之前插入项目,索引将不同步。

Given an Item that has been appended to a Form, whats the best way to find out what index that item is at on the Form?

Form.append(Item) will give me the index its initially added at, but if I later insert items before that the index will be out of sync.

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

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

发布评论

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

评论(2

柒七 2024-07-13 05:37:12

这是我能想到的最好的:

private int getItemIndex(Item item, Form form) {
    for(int i = 0, size = form.size(); i < size; i++) {
        if(form.get(i).equals(item)) {
            return i;
        }
    }
    return -1;
}

我还没有真正测试过这个,但它应该可以工作,我只是不喜欢必须枚举每个项目,但永远不应该有那么多,所以我想它可以。

This was the best I could come up with:

private int getItemIndex(Item item, Form form) {
    for(int i = 0, size = form.size(); i < size; i++) {
        if(form.get(i).equals(item)) {
            return i;
        }
    }
    return -1;
}

I haven't actually tested this but it should work, I just don't like having to enumerate every item but then there should never be that many so I guess its ok.

把回忆走一遍 2024-07-13 05:37:12

好吧,只有两种方法可以做到这一点,因为 API 没有 indexOf(Item) 方法:

  1. 您可以在添加 Item 时更新获得的索引。 因此,当您在其他项目之前插入另一个 Item 时,您必须更新这些项目的索引。 你可以为此保留某种阴影阵列,但这似乎有点矫枉过正。
  2. 您可以使用 Formsizeget 方法遍历表单的所有项目。

Well, there are just two ways to do this, since the API does not have an indexOf(Item) method:

  1. You update the index you get when you add an Item. So when you insert another Item before other items, you'll have to update the indices of those items. You could keep some kind of shadow-array for this, but that seems a bit overkill.
  2. You loop through all the items of a form using the size and get methods of Form.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文