2

我有一个List<String> 我想要的东西如下

Rule "List_iterate"
 when
   $str : String from List<String>
 then 
    // some action of $str
4

1 回答 1

2

将列表用作事实并不是一个好习惯。使用包装类总是很方便。但是,如果您想使用 List ,您可以编写如下内容:

Rule "List_iterate"
when
  $list : List()   //Be careful, this will match against all the Lists you have in your session.
  $str : String() from $list
then 
  // some action of $str
end

希望能帮助到你。

于 2013-07-24T18:37:58.980 回答