集合,数组等序列操作

序列的连接可以使用+号来进行
<#list ["Joe", "Fred"] + ["Julia", "Kate"] as user>
- ${user}
</#list>


不建议拼接,会影响速度。

序列切分
使用[firstindex..lastindex]可以获取序列的一份,这里的firstindex和lastindex的表达式结果是数字。如果seq存储序列"a", "b", "c", "d", "e", "f",那么表达式seq[1..4]将会是含有"b", "c", "d", "e"的序列

你可能感兴趣的:(freemarker)