search

Home  >  Q&A  >  body text

java - 怎样不用<c:foreach>读取到set集合的第一个元素

现在有一个问题集合questions,里面存放question,question有一个point属性,现在只要取出第一个question的point值,怎样在不使用的情况下读取到这个值呢,试过${questions[0].point}是不行的,请知道的高手指点下,谢谢。

ringa_leeringa_lee2841 days ago556

reply all(1)I'll reply

  • 高洛峰

    高洛峰2017-04-17 13:09:39

    Try this:

    <c:out value="${questions[0]. point}" />
    

    or:

    questions.iterator().next().point
    

    reply
    0
  • Cancelreply