gpt4 book ai didi

java - 列表的返回方法列表

转载 作者:行者123 更新时间:2023-12-04 05:21:40 25 4
gpt4 key购买 nike

我有以下方法,我现在返回最后一个条目但是
我如何发送注释列表?

我想从循环中返回所有注释列表

public EList<Annotation> getAnnotation()
{
EList<Annotation> annotations = null;
for (Sc currSc : sche)
{
for (EntityS entitys : ent)
{
// Get annotation
annotations = entitys.getAnnotations();
}
}
return annotations;
}

最佳答案

如果你想把所有的 Annotation一起,你需要创建一个全新的EList然后将它们全部添加,即

public EList<Annotation> getAnnotation()
{
// Create the new list that will hold ALL the annotations
EList<Annotation> annotations = new BasicEList<Annotation>();
for (Sc currSc : sche)
{
for (EntityS entitys : ent)
{
// Get annotation
annotations.addAll(entitys.getAnnotations());
}
}
return annotations;
}

关于java - 列表的返回方法列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13627931/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com