当前位置 : 主页 > 网络推广 > seo >

如何检索存储在Java ArrayList中的对象值

来源:互联网 收集:自由互联 发布时间:2021-06-16
ArrayListyellowPage ob1 = new ArrayListyellowPage(); yellowPage thing = new yellowPage(100,100);thing.calc(i,y,s3); ob1.add(thing); 我在东西中存储了一些数据.如何检索存储在ob1.thing中的值? 如果您知道索引,则可以
ArrayList<yellowPage> ob1 = new ArrayList<yellowPage>(); 
yellowPage thing = new yellowPage(100,100);
thing.calc(i,y,s3); 
ob1.add(thing);

我在东西中存储了一些数据.如何检索存储在ob1.thing中的值?

如果您知道索引,则可以执行yellowPage

yellowPage yp = ob1.get(index);

否则,您需要遍历列表.

Iterator<yellowPate> iter = ob1.iterator();
while(iter.hasNext())
{
    yellowPage yp = iter.next();
    yp.whateverYouwantGet();
}

注意:我只是在这里键入代码,可能存在语法错误.

网友评论