如何更新List<中的数据?扩展 Map>

发布于 2024-12-06 13:39:06 字数 517 浏览 1 评论 0 原文

我正在使用 List>

cursor.moveToFirst();
while (cursor.getPosition() < cursor.getCount()) {
    item.put("ProdName",cursor.getString(2));
    item.put("ProdSize", cursor.getString(3));
    item.put("ProdPack",cursor.getString(4));
    item.put("OrdQty","0");

    //list.add(item);
    list.add(i, item);
    item = new HashMap<String,String>();    
    cursor.moveToNext();
    i = i + 1;
}

如何更新例如 OrdQty 字段中的值?

I'm making use of a List<? extends Map<String,?>> that I populated with data.

cursor.moveToFirst();
while (cursor.getPosition() < cursor.getCount()) {
    item.put("ProdName",cursor.getString(2));
    item.put("ProdSize", cursor.getString(3));
    item.put("ProdPack",cursor.getString(4));
    item.put("OrdQty","0");

    //list.add(item);
    list.add(i, item);
    item = new HashMap<String,String>();    
    cursor.moveToNext();
    i = i + 1;
}

How do I update a value for example in the OrdQty field?

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

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

发布评论

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

评论(2

指尖微凉心微凉 2024-12-13 13:39:06

对我来说,这看起来是一个非常糟糕的设计。 Java 是一种面向对象的语言。为什么不提供真实的合同并创建 Product 和 Order 对象?为订单提供要维护的产品列表。您所提议的内容不那么不言自明,并且更难以编写和维护。

Looks like a very bad design to me. Java's an object-oriented language. Why don't you provide a real contract and create Product and Order objects? Give Order a List of Products to maintain. What you're proposing is less self-explanatory and harder to write and maintain.

赤濁 2024-12-13 13:39:06

@Duffymo 是对的,你不应该使用地图作为伪对象。

这是更新列表中特定位置(index)的对象的方法。

Map<String,?> ugly = list.get(index);

然后你就可以对这个丑陋的物体做任何你想做的事。

如果你做得正确的话,它看起来会像这样......

Product p = list.get(index);
p.setOrderQuantity(17);

@Duffymo is right, you shouldn't use a map as a pseudo-object.

This is how to update an object at a specific place (index) in a list.

Map<String,?> ugly = list.get(index);

Then you can do whatever you want with the object ugly.

If you did it properly, it would look like this...

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